2014-11-15 14:00:15 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam, openssl
|
2015-03-26 20:30:45 +00:00
|
|
|
, dbus, acl, gmp
|
|
|
|
, libusb ? null, gnutls ? null, avahi ? null, libpaper ? null
|
|
|
|
}:
|
2012-10-08 18:50:19 +00:00
|
|
|
|
2015-03-26 20:30:45 +00:00
|
|
|
let version = "2.0.2"; in
|
2005-10-21 13:06:08 +00:00
|
|
|
|
2015-03-26 20:30:45 +00:00
|
|
|
with stdenv.lib;
|
2014-11-15 14:00:15 +00:00
|
|
|
stdenv.mkDerivation {
|
2009-05-06 14:05:32 +00:00
|
|
|
name = "cups-${version}";
|
2009-11-05 13:33:36 +00:00
|
|
|
|
2014-11-15 14:00:15 +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";
|
2015-03-26 20:30:45 +00:00
|
|
|
sha256 = "12xild9nrhqnrzx8zqh78v3chm4mpp5gf5iamr0h9zb6dgvj11w5";
|
2005-10-21 13:06:08 +00:00
|
|
|
};
|
2007-04-02 16:22:10 +00:00
|
|
|
|
2015-03-26 20:30:45 +00:00
|
|
|
buildInputs = [ pkgconfig zlib libjpeg libpng libtiff libusb gnutls avahi libpaper ]
|
2013-04-11 14:02:24 +00:00
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ pam dbus.libs acl ] ;
|
2009-10-30 09:46:51 +00:00
|
|
|
|
2015-03-26 23:18:17 +00:00
|
|
|
propagatedBuildInputs = [ openssl 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"
|
|
|
|
++ optional (libpaper != null) "--enable-libpaper";
|
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"
|
|
|
|
"INITDIR=$(out)/etc/rc.d"
|
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
|
|
|
|
2014-12-16 17:20:12 +00:00
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
# Delete obsolete stuff that conflicts with cups-filters.
|
|
|
|
rm -rf $out/share/cups/banners $out/share/cups/data/testprint
|
|
|
|
'';
|
|
|
|
|
2008-11-07 13:36:57 +00:00
|
|
|
meta = {
|
2012-03-06 16:02:04 +00:00
|
|
|
homepage = "http://www.cups.org/";
|
2008-11-07 13:36:57 +00:00
|
|
|
description = "A standards-based printing system for UNIX";
|
2011-10-06 09:57:32 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2; # actually LGPL for the library and GPL for the rest
|
2011-10-03 20:50:08 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.urkud stdenv.lib.maintainers.simons ];
|
2013-01-29 11:16:40 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-11-07 13:36:57 +00:00
|
|
|
};
|
2005-10-21 13:06:08 +00:00
|
|
|
}
|