1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

pango on darwin: amend the wrong fix

I didn't realize pango doesn't depend on flex directly,
only through introspection which caused build problems by itself, too.
This commit is contained in:
Vladimír Čunát 2014-04-11 09:55:46 +02:00
parent e2e74154e2
commit 8c12816d59
2 changed files with 2 additions and 4 deletions

View file

@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
buildInputs = with stdenv.lib;
optional (!stdenv.isDarwin) gobjectIntrospection # build problems
optional (!stdenv.isDarwin) gobjectIntrospection # build problems of itself and flex
++ optionals stdenv.isDarwin [ gettext fontconfig ];
nativeBuildInputs = [ pkgconfig ];

View file

@ -4568,9 +4568,7 @@ let
};
cairomm = callPackage ../development/libraries/cairomm { };
pango = callPackage ../development/libraries/pango (
lib.optionalAttrs stdenv.isDarwin { flex = flex_2_5_35; } # flex fails to build
);
pango = callPackage ../development/libraries/pango { };
pangomm = callPackage ../development/libraries/pangomm { };
pangox_compat = callPackage ../development/libraries/pangox-compat { };