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:
parent
e2e74154e2
commit
8c12816d59
|
@ -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 ];
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue