forked from mirrors/nixpkgs
Merge pull request #187420 from lorenz/patch-1
This commit is contained in:
commit
28f291330c
|
@ -2,7 +2,7 @@
|
|||
{ stdenv, lib, fetchurl, makeWrapper, pkg-config
|
||||
, ijs, zlib
|
||||
, gimp2Support ? false, gimp
|
||||
, cupsSupport ? true, cups, libusb-compat-0_1, perl
|
||||
, cupsSupport ? true, cups, libusb1, perl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
|||
buildInputs =
|
||||
[ ijs zlib ]
|
||||
++ lib.optionals gimp2Support [ gimp.gtk gimp ]
|
||||
++ lib.optionals cupsSupport [ cups libusb-compat-0_1 perl ];
|
||||
++ lib.optionals cupsSupport [ cups libusb1 perl ];
|
||||
|
||||
configureFlags = lib.optionals cupsSupport [
|
||||
"--disable-static-genppd" # should be harmless on NixOS
|
||||
|
|
Loading…
Reference in a new issue