3
0
Fork 0
forked from mirrors/nixpkgs

gutenprint: fix build

after "gnutls: 3.5.15 -> 3.6.1" became independent from zlib.
This commit is contained in:
Orivej Desh 2017-11-29 10:08:37 +00:00
parent b58cb3fa28
commit c905d9351c

View file

@ -1,6 +1,6 @@
# this package was called gimp-print in the past
{ stdenv, lib, fetchurl, pkgconfig
, ijs, makeWrapper
{ stdenv, lib, fetchurl, makeWrapper, pkgconfig
, ijs, zlib
, gimp2Support ? false, gimp
, cupsSupport ? true, cups, libusb, perl
}:
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ makeWrapper pkgconfig ];
buildInputs =
[ ijs ]
[ ijs zlib ]
++ lib.optionals gimp2Support [ gimp.gtk gimp ]
++ lib.optionals cupsSupport [ cups libusb perl ];