1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

gnome3.libgxps: Fix dependency propagation bug

Packages that want to use libgxps also need libarchive, thus it is moved
to propagatedBuildInputs.
This commit is contained in:
Michael Raitza 2016-02-19 20:11:28 +01:00
parent f591a171f8
commit 6d6a7881ef

View file

@ -10,7 +10,8 @@ stdenv.mkDerivation rec {
sha256 = "1gi0b0x0354jyqc48vspk2hg2q1403cf2p9ibj847nzhkdrh9l9r";
};
buildInputs = [ pkgconfig glib cairo libarchive freetype libjpeg libtiff acl openssl bzip2 attr];
buildInputs = [ pkgconfig glib cairo freetype libjpeg libtiff acl openssl bzip2 attr];
propagatedBuildInputs = [ libarchive ];
configureFlags = "--without-liblcms2";