From b1a8accc14522298bbba4c957f001b84c19cf519 Mon Sep 17 00:00:00 2001 From: Ryan Burns Date: Sun, 31 Oct 2021 00:00:08 -0700 Subject: [PATCH] librsvg: fix darwin build Needed now that strictDeps is enabled --- pkgs/development/libraries/librsvg/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/librsvg/default.nix b/pkgs/development/libraries/librsvg/default.nix index 3abcdb1ee8c4..6610d55b37ae 100644 --- a/pkgs/development/libraries/librsvg/default.nix +++ b/pkgs/development/libraries/librsvg/default.nix @@ -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 ];