Merge pull request #123504 from stephank/fix-silicon-darwin

silicon: fix darwin build
This commit is contained in:
Pavol Rusnak 2021-05-18 18:43:15 +02:00 committed by GitHub
commit 2865e9837c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@
, freetype
, libxcb
, python3
, libiconv
, AppKit
, CoreText
, Security
@ -29,7 +30,7 @@ rustPlatform.buildRustPackage rec {
buildInputs = [ llvmPackages.libclang expat freetype ]
++ lib.optionals stdenv.isLinux [ libxcb ]
++ lib.optionals stdenv.isDarwin [ AppKit CoreText Security ];
++ lib.optionals stdenv.isDarwin [ libiconv AppKit CoreText Security ];
nativeBuildInputs = [ cmake pkg-config ]
++ lib.optionals stdenv.isLinux [ python3 ];