librsvg: fix darwin build

Needed now that strictDeps is enabled
This commit is contained in:
Ryan Burns 2021-10-31 00:00:08 -07:00
parent c382538507
commit b1a8accc14

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
];