From 6d3b9763a6b343531a510ca495ec1bc260d41c32 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Fri, 1 Jun 2018 00:14:59 +0200 Subject: [PATCH] gdk-pixbuf: make loaders builtin on Darwin Meson produces faulty loaders on Darwin, building them into the library bypasses that. https://github.com/NixOS/nixpkgs/commit/4b2f3971981272b79da7f87b639ca8854a6ea89c --- pkgs/development/libraries/gdk-pixbuf/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gdk-pixbuf/default.nix b/pkgs/development/libraries/gdk-pixbuf/default.nix index 849e72d9a97..b0a86644afb 100644 --- a/pkgs/development/libraries/gdk-pixbuf/default.nix +++ b/pkgs/development/libraries/gdk-pixbuf/default.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation rec { "-Djasper=true" "-Dx11=true" "-Dgir=${if gobjectIntrospection != null then "true" else "false"}" - ]; + ] ++ stdenv.lib.optional stdenv.isDarwin "-Dbuiltin_loaders=all"; postPatch = '' chmod +x build-aux/* # patchShebangs only applies to executables