0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

Merge #143945: librsvg: fix darwin build (into staging-next)

This commit is contained in:
Vladimír Čunát 2021-10-31 10:26:35 +01:00
commit 1526c99bcb
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -48,9 +48,6 @@ stdenv.mkDerivation rec {
rustPlatform.cargoSetupHook
] ++ lib.optionals withIntrospection [
gobject-introspection
] ++ lib.optionals stdenv.isDarwin [
ApplicationServices
Foundation
];
buildInputs = [
@ -61,6 +58,8 @@ stdenv.mkDerivation rec {
] ++ lib.optionals withIntrospection [
gobject-introspection
] ++ lib.optionals stdenv.isDarwin [
ApplicationServices
Foundation
libobjc
];