anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / misc / drivers / gutenprint / default.nix
blobe2d5b8ec6a82bd304bddb65014b4417fa227f2f9
1 # this package was called gimp-print in the past
2 { stdenv, lib, fetchurl, makeWrapper, pkg-config
3 , ijs, zlib
4 , gimp2Support ? false, gimp
5 , cupsSupport ? true, cups, libusb1, perl
6 }:
8 stdenv.mkDerivation rec {
9   pname = "gutenprint";
10   version = "5.3.4";
12   src = fetchurl {
13     url = "mirror://sourceforge/gimp-print/gutenprint-${version}.tar.bz2";
14     sha256 = "0s0b14hjwvbxksq7af5v8z9g2rfqv9jdmxd9d81m57f5mh6rad0p";
15   };
17   strictDeps = true;
18   nativeBuildInputs = [ makeWrapper pkg-config ]
19     ++ lib.optionals cupsSupport [ cups perl ]; # for cups-config
20   buildInputs =
21     [ ijs zlib ]
22     ++ lib.optionals gimp2Support [ gimp.gtk gimp ]
23     ++ lib.optionals cupsSupport [ cups libusb1 perl ];
25   configureFlags = lib.optionals cupsSupport [
26     "--disable-static-genppd" # should be harmless on NixOS
27   ];
29   # FIXME: hacky because we modify generated configure, but I haven't found a better way.
30   # makeFlags doesn't change this everywhere (e.g. in cups-genppdupdate).
31   preConfigure = lib.optionalString cupsSupport ''
32     sed -i \
33       -e "s,cups_conf_datadir=.*,cups_conf_datadir=\"$out/share/cups\",g" \
34       -e "s,cups_conf_serverbin=.*,cups_conf_serverbin=\"$out/lib/cups\",g" \
35       -e "s,cups_conf_serverroot=.*,cups_conf_serverroot=\"$out/etc/cups\",g" \
36       configure
37   '' + lib.optionalString gimp2Support ''
38     sed -i \
39       -e "s,gimp2_plug_indir=.*,gimp2_plug_indir=\"$out/lib/gimp/${gimp.majorVersion}\",g" \
40       configure
41   '';
43   enableParallelBuilding = true;
45   # Testing is very, very long.
46   # doCheck = true;
48   meta = with lib; {
49     description = "Ghostscript and cups printer drivers";
50     homepage = "https://sourceforge.net/projects/gimp-print/";
51     license = licenses.gpl2Plus;
52     platforms = platforms.linux;
53     isGutenprint = true;
54   };