2015-07-26 13:44:26 +03:00
|
|
|
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam
|
2016-04-16 22:59:31 +03:00
|
|
|
, dbus, systemd, acl, gmp, darwin
|
2015-03-26 23:30:45 +03:00
|
|
|
, libusb ? null, gnutls ? null, avahi ? null, libpaper ? null
|
|
|
|
}:
|
2012-10-08 22:50:19 +04:00
|
|
|
|
2016-02-21 15:51:08 +03:00
|
|
|
### IMPORTANT: before updating cups, make sure the nixos/tests/printing.nix test
|
|
|
|
### works at least for your platform.
|
2005-10-21 17:06:08 +04:00
|
|
|
|
2015-03-26 23:30:45 +03:00
|
|
|
with stdenv.lib;
|
2016-08-18 12:20:26 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2009-05-06 18:05:32 +04:00
|
|
|
name = "cups-${version}";
|
2017-03-12 17:50:26 +03:00
|
|
|
version = "2.2.2";
|
2009-11-05 16:33:36 +03:00
|
|
|
|
2011-08-18 16:52:22 +04:00
|
|
|
passthru = { inherit version; };
|
|
|
|
|
2005-10-21 17:06:08 +04:00
|
|
|
src = fetchurl {
|
2017-03-12 17:50:26 +03:00
|
|
|
url = "https://github.com/apple/cups/releases/download/v${version}/cups-${version}-source.tar.gz";
|
|
|
|
sha256 = "1xp4ji4rz3xffsz6w6nd60ajxvvihn02pkyp2l4smhqxbmyvp2gm";
|
2005-10-21 17:06:08 +04:00
|
|
|
};
|
2007-04-02 20:22:10 +04:00
|
|
|
|
2015-10-05 23:56:47 +03:00
|
|
|
# FIXME: the cups libraries contains some $out/share strings so can't be split.
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" "man" ]; # TODO: above
|
2013-06-11 16:52:36 +04:00
|
|
|
|
2016-01-13 08:52:39 +03:00
|
|
|
buildInputs = [ pkgconfig zlib libjpeg libpng libtiff libusb gnutls libpaper ]
|
2016-04-16 22:59:31 +03:00
|
|
|
++ optionals stdenv.isLinux [ avahi pam dbus systemd acl ]
|
2016-01-13 08:52:39 +03:00
|
|
|
++ optionals stdenv.isDarwin (with darwin; [
|
|
|
|
configd apple_sdk.frameworks.ApplicationServices
|
|
|
|
]);
|
2009-10-30 12:46:51 +03:00
|
|
|
|
2015-07-26 13:44:26 +03:00
|
|
|
propagatedBuildInputs = [ gmp ];
|
2007-04-02 21:30:11 +04:00
|
|
|
|
2015-03-26 23:30:45 +03: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 08:52:39 +03:00
|
|
|
++ optional (libpaper != null) "--enable-libpaper"
|
|
|
|
++ optionals stdenv.isDarwin [
|
|
|
|
"--with-bundledir=$out"
|
|
|
|
"--disable-launchd"
|
|
|
|
];
|
2007-04-02 21:30:11 +04:00
|
|
|
|
2009-10-30 12:46:51 +03: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 15:33:34 +03:00
|
|
|
# Idem for /etc.
|
|
|
|
"PAMDIR=$(out)/etc/pam.d"
|
|
|
|
"DBUSDIR=$(out)/etc/dbus-1"
|
2009-11-05 16:33:36 +03:00
|
|
|
"XINETD=$(out)/etc/xinetd.d"
|
2014-12-16 20:22:22 +03:00
|
|
|
"SERVERROOT=$(out)/etc/cups"
|
2009-11-05 16:33:36 +03:00
|
|
|
# Idem for /usr.
|
|
|
|
"MENUDIR=$(out)/share/applications"
|
|
|
|
"ICONDIR=$(out)/share/icons"
|
2009-10-30 12:46:51 +03:00
|
|
|
# Work around a Makefile bug.
|
|
|
|
"CUPS_PRIMARY_SYSTEM_GROUP=root"
|
|
|
|
];
|
2008-11-07 16:36:57 +03:00
|
|
|
|
2016-01-13 19:46:41 +03:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-08-15 22:01:22 +03:00
|
|
|
postInstall = ''
|
2014-12-16 20:20:12 +03:00
|
|
|
# Delete obsolete stuff that conflicts with cups-filters.
|
|
|
|
rm -rf $out/share/cups/banners $out/share/cups/data/testprint
|
2015-04-18 12:00:58 +03:00
|
|
|
|
2013-06-11 16:52:36 +04:00
|
|
|
mkdir $dev/bin
|
|
|
|
mv $out/bin/cups-config $dev/bin/
|
2015-10-03 14:33:13 +03:00
|
|
|
|
2015-04-28 21:37:34 +03: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 22:01:22 +03: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 16:52:36 +04:00
|
|
|
'';
|
|
|
|
|
2008-11-07 16:36:57 +03:00
|
|
|
meta = {
|
2015-04-28 13:11:41 +03:00
|
|
|
homepage = https://cups.org/;
|
2008-11-07 16:36:57 +03:00
|
|
|
description = "A standards-based printing system for UNIX";
|
2015-04-28 13:11:41 +03:00
|
|
|
license = licenses.gpl2; # actually LGPL for the library and GPL for the rest
|
2016-05-16 23:30:20 +03:00
|
|
|
maintainers = with maintainers; [ urkud jgeerds ];
|
2015-04-28 13:11:41 +03:00
|
|
|
platforms = platforms.linux;
|
2008-11-07 16:36:57 +03:00
|
|
|
};
|
2005-10-21 17:06:08 +04:00
|
|
|
}
|