2015-07-26 10:44:26 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam
|
2016-01-13 05:52:39 +00:00
|
|
|
, dbus, acl, gmp, darwin
|
2015-03-26 20:30:45 +00:00
|
|
|
, libusb ? null, gnutls ? null, avahi ? null, libpaper ? null
|
|
|
|
}:
|
2012-10-08 18:50:19 +00:00
|
|
|
|
2016-02-21 12:51:08 +00:00
|
|
|
### IMPORTANT: before updating cups, make sure the nixos/tests/printing.nix test
|
|
|
|
### works at least for your platform.
|
2016-01-13 16:46:41 +00:00
|
|
|
let version = "2.1.3"; in
|
2005-10-21 13:06:08 +00:00
|
|
|
|
2015-03-26 20:30:45 +00:00
|
|
|
with stdenv.lib;
|
2005-10-21 13:06:08 +00:00
|
|
|
stdenv.mkDerivation {
|
2009-05-06 14:05:32 +00:00
|
|
|
name = "cups-${version}";
|
2009-11-05 13:33:36 +00:00
|
|
|
|
2011-08-18 12:52:22 +00:00
|
|
|
passthru = { inherit version; };
|
|
|
|
|
2005-10-21 13:06:08 +00:00
|
|
|
src = fetchurl {
|
2014-11-15 14:00:15 +00:00
|
|
|
url = "https://www.cups.org/software/${version}/cups-${version}-source.tar.bz2";
|
2016-01-13 16:46:41 +00:00
|
|
|
sha256 = "1lyl3z01xhg9xb9c8m42398c6h9kw8qr6jwiv8bjdsjab11hv9rn";
|
2005-10-21 13:06:08 +00:00
|
|
|
};
|
2007-04-02 16:22:10 +00:00
|
|
|
|
2015-10-05 20:56:47 +00:00
|
|
|
# FIXME: the cups libraries contains some $out/share strings so can't be split.
|
2015-10-11 15:19:01 +00:00
|
|
|
outputs = [ "dev" "out" "doc" "man" ]; # TODO: above
|
2013-06-11 12:52:36 +00:00
|
|
|
|
2016-01-13 05:52:39 +00:00
|
|
|
buildInputs = [ pkgconfig zlib libjpeg libpng libtiff libusb gnutls libpaper ]
|
2016-01-19 08:55:31 +00:00
|
|
|
++ optionals stdenv.isLinux [ avahi pam dbus acl ]
|
2016-01-13 05:52:39 +00:00
|
|
|
++ optionals stdenv.isDarwin (with darwin; [
|
|
|
|
configd apple_sdk.frameworks.ApplicationServices
|
|
|
|
]);
|
2009-10-30 09:46:51 +00:00
|
|
|
|
2015-07-26 10:44:26 +00:00
|
|
|
propagatedBuildInputs = [ gmp ];
|
2007-04-02 17:30:11 +00:00
|
|
|
|
2015-03-26 20:30:45 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--with-systemd=\${out}/lib/systemd/system"
|
|
|
|
"--enable-raw-printing"
|
|
|
|
"--enable-threads"
|
|
|
|
] ++ optionals stdenv.isLinux [
|
|
|
|
"--enable-dbus"
|
|
|
|
"--enable-pam"
|
|
|
|
] ++ optional (libusb != null) "--enable-libusb"
|
|
|
|
++ optional (gnutls != null) "--enable-ssl"
|
|
|
|
++ optional (avahi != null) "--enable-avahi"
|
2016-01-13 05:52:39 +00:00
|
|
|
++ optional (libpaper != null) "--enable-libpaper"
|
|
|
|
++ optionals stdenv.isDarwin [
|
|
|
|
"--with-bundledir=$out"
|
|
|
|
"--disable-launchd"
|
|
|
|
];
|
2007-04-02 17:30:11 +00:00
|
|
|
|
2009-10-30 09:46:51 +00:00
|
|
|
installFlags =
|
|
|
|
[ # Don't try to write in /var at build time.
|
|
|
|
"CACHEDIR=$(TMPDIR)/dummy"
|
|
|
|
"LOGDIR=$(TMPDIR)/dummy"
|
|
|
|
"REQUESTS=$(TMPDIR)/dummy"
|
|
|
|
"STATEDIR=$(TMPDIR)/dummy"
|
2009-10-30 12:33:34 +00:00
|
|
|
# Idem for /etc.
|
|
|
|
"PAMDIR=$(out)/etc/pam.d"
|
|
|
|
"DBUSDIR=$(out)/etc/dbus-1"
|
2009-11-05 13:33:36 +00:00
|
|
|
"XINETD=$(out)/etc/xinetd.d"
|
2014-12-16 17:22:22 +00:00
|
|
|
"SERVERROOT=$(out)/etc/cups"
|
2009-11-05 13:33:36 +00:00
|
|
|
# Idem for /usr.
|
|
|
|
"MENUDIR=$(out)/share/applications"
|
|
|
|
"ICONDIR=$(out)/share/icons"
|
2009-10-30 09:46:51 +00:00
|
|
|
# Work around a Makefile bug.
|
|
|
|
"CUPS_PRIMARY_SYSTEM_GROUP=root"
|
|
|
|
];
|
2008-11-07 13:36:57 +00:00
|
|
|
|
2016-01-13 16:46:41 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-08-15 19:01:22 +00:00
|
|
|
postInstall = ''
|
2014-12-16 17:20:12 +00:00
|
|
|
# Delete obsolete stuff that conflicts with cups-filters.
|
|
|
|
rm -rf $out/share/cups/banners $out/share/cups/data/testprint
|
2015-04-18 09:00:58 +00:00
|
|
|
|
2013-06-11 12:52:36 +00:00
|
|
|
mkdir $dev/bin
|
|
|
|
mv $out/bin/cups-config $dev/bin/
|
2015-10-03 11:33:13 +00:00
|
|
|
|
2015-04-28 18:37:34 +00:00
|
|
|
# Rename systemd files provided by CUPS
|
|
|
|
for f in $out/lib/systemd/system/*; do
|
|
|
|
substituteInPlace "$f" \
|
|
|
|
--replace "org.cups.cupsd" "cups" \
|
|
|
|
--replace "org.cups." ""
|
|
|
|
|
|
|
|
if [[ "$f" =~ .*cupsd\..* ]]; then
|
|
|
|
mv "$f" "''${f/org\.cups\.cupsd/cups}"
|
|
|
|
else
|
|
|
|
mv "$f" "''${f/org\.cups\./}"
|
|
|
|
fi
|
|
|
|
done
|
2015-08-15 19:01:22 +00:00
|
|
|
'' + optionalString stdenv.isLinux ''
|
|
|
|
# Use xdg-open when on Linux
|
|
|
|
substituteInPlace $out/share/applications/cups.desktop \
|
|
|
|
--replace "Exec=htmlview" "Exec=xdg-open"
|
2013-06-11 12:52:36 +00:00
|
|
|
'';
|
|
|
|
|
2008-11-07 13:36:57 +00:00
|
|
|
meta = {
|
2015-04-28 10:11:41 +00:00
|
|
|
homepage = https://cups.org/;
|
2008-11-07 13:36:57 +00:00
|
|
|
description = "A standards-based printing system for UNIX";
|
2015-04-28 10:11:41 +00:00
|
|
|
license = licenses.gpl2; # actually LGPL for the library and GPL for the rest
|
|
|
|
maintainers = with maintainers; [ urkud simons jgeerds ];
|
|
|
|
platforms = platforms.linux;
|
2008-11-07 13:36:57 +00:00
|
|
|
};
|
2005-10-21 13:06:08 +00:00
|
|
|
}
|