summary refs log tree commit diff
path: root/pkgs/development/libraries/pango
diff options
context:
space:
mode:
authorSpencer Whitt <sw@swhitt.me>2015-03-31 14:08:27 -0400
committerSpencer Whitt <sw@swhitt.me>2015-03-31 16:41:50 -0400
commitf55393de94afc0226a15b337d0bfc638cb74fce9 (patch)
treec86b9505b6761f8bfb46122ab4d7683020ecbf94 /pkgs/development/libraries/pango
parentdcde8a967f4921d92e6db5dd2c53d3b3b8bb8ff4 (diff)
downloadnixpkgs-f55393de94afc0226a15b337d0bfc638cb74fce9.tar
nixpkgs-f55393de94afc0226a15b337d0bfc638cb74fce9.tar.gz
nixpkgs-f55393de94afc0226a15b337d0bfc638cb74fce9.tar.bz2
nixpkgs-f55393de94afc0226a15b337d0bfc638cb74fce9.tar.lz
nixpkgs-f55393de94afc0226a15b337d0bfc638cb74fce9.tar.xz
nixpkgs-f55393de94afc0226a15b337d0bfc638cb74fce9.tar.zst
nixpkgs-f55393de94afc0226a15b337d0bfc638cb74fce9.zip
pango: compile with gobjectIntrospection on Darwin
Required to make .gir files needed by gtk3
Diffstat (limited to 'pkgs/development/libraries/pango')
-rw-r--r--pkgs/development/libraries/pango/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/libraries/pango/default.nix b/pkgs/development/libraries/pango/default.nix
index 45ca9cb98e8..87187667a92 100644
--- a/pkgs/development/libraries/pango/default.nix
+++ b/pkgs/development/libraries/pango/default.nix
@@ -14,8 +14,7 @@ stdenv.mkDerivation rec {
     sha256 = "01rdzjh68w8l5zn0648yibyarj8p6g7yfn59nw5awaz1i8dvbnqq";
   };
 
-  buildInputs = with stdenv.lib;
-    optional (!stdenv.isDarwin) gobjectIntrospection # build problems of itself and flex
+  buildInputs = with stdenv.lib; [ gobjectIntrospection ]
     ++ optionals stdenv.isDarwin [ fontconfig ];
   nativeBuildInputs = [ pkgconfig ];