nixpkgs/pkgs/misc/cups/default.nix

84 lines
2.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam, openssl
2015-04-28 10:42:53 +00:00
, dbus, acl, gmp, xdg_utils
2015-03-26 20:30:45 +00:00
, libusb ? null, gnutls ? null, avahi ? null, libpaper ? null
}:
2012-10-08 18:50:19 +00:00
2015-07-07 02:59:50 +00:00
let version = "2.0.3"; in
2015-03-26 20:30:45 +00:00
with stdenv.lib;
stdenv.mkDerivation {
name = "cups-${version}";
passthru = { inherit version; };
src = fetchurl {
url = "https://www.cups.org/software/${version}/cups-${version}-source.tar.bz2";
2015-07-07 02:59:50 +00:00
sha256 = "10c84ppc9prx6gcyskmm6fh0rks346yryzd356gkg9whhq26fcdw";
};
2015-03-26 20:30:45 +00:00
buildInputs = [ pkgconfig zlib libjpeg libpng libtiff libusb gnutls avahi libpaper ]
2015-04-28 10:42:53 +00:00
++ optionals stdenv.isLinux [ pam dbus.libs acl xdg_utils ] ;
2015-03-26 23:18:17 +00:00
propagatedBuildInputs = [ openssl gmp ];
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"
++ optional (libpaper != null) "--enable-libpaper";
installFlags =
[ # Don't try to write in /var at build time.
"CACHEDIR=$(TMPDIR)/dummy"
"LOGDIR=$(TMPDIR)/dummy"
"REQUESTS=$(TMPDIR)/dummy"
"STATEDIR=$(TMPDIR)/dummy"
# Idem for /etc.
"PAMDIR=$(out)/etc/pam.d"
"DBUSDIR=$(out)/etc/dbus-1"
"INITDIR=$(out)/etc/rc.d"
"XINETD=$(out)/etc/xinetd.d"
"SERVERROOT=$(out)/etc/cups"
# Idem for /usr.
"MENUDIR=$(out)/share/applications"
"ICONDIR=$(out)/share/icons"
# Work around a Makefile bug.
"CUPS_PRIMARY_SYSTEM_GROUP=root"
];
postInstall =
''
# Delete obsolete stuff that conflicts with cups-filters.
rm -rf $out/share/cups/banners $out/share/cups/data/testprint
# 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
'';
meta = {
2015-04-28 10:11:41 +00:00
homepage = https://cups.org/;
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;
};
}