2012-10-08 19:43:42 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam, openssl
|
2013-08-21 16:10:39 +01:00
|
|
|
, dbus, libusb1, acl }:
|
2012-10-08 19:50:19 +01:00
|
|
|
|
|
|
|
let version = "1.5.4"; in
|
2005-10-21 14:06:08 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-05-06 15:05:32 +01:00
|
|
|
name = "cups-${version}";
|
2009-11-05 13:33:36 +00:00
|
|
|
|
2011-08-18 13:52:22 +01:00
|
|
|
passthru = { inherit version; };
|
|
|
|
|
2005-10-21 14:06:08 +01:00
|
|
|
src = fetchurl {
|
2009-05-06 15:05:32 +01:00
|
|
|
url = "http://ftp.easysw.com/pub/cups/${version}/cups-${version}-source.tar.bz2";
|
2012-10-08 19:50:19 +01:00
|
|
|
md5 = "de3006e5cf1ee78a9c6145ce62c4e982";
|
2005-10-21 14:06:08 +01:00
|
|
|
};
|
2007-04-02 17:22:10 +01:00
|
|
|
|
2013-06-11 13:52:36 +01:00
|
|
|
# FIXME: Split off the cups client library.
|
|
|
|
outputs = [ "dev" "out" "doc" "man" ];
|
|
|
|
|
2012-10-08 19:50:19 +01:00
|
|
|
buildInputs = [ pkgconfig zlib libjpeg libpng libtiff libusb1 ]
|
2013-04-11 15:02:24 +01:00
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ pam dbus.libs acl ] ;
|
2009-10-30 09:46:51 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ openssl ];
|
2007-04-02 18:30:11 +01:00
|
|
|
|
2009-10-30 12:33:34 +00:00
|
|
|
configureFlags = "--localstatedir=/var --enable-dbus"; # --with-dbusdir
|
2007-04-02 18:30:11 +01: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"
|
|
|
|
# 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
|
|
|
|
2013-06-11 13:52:36 +01:00
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
mkdir $dev/bin
|
|
|
|
mv $out/bin/cups-config $dev/bin/
|
2013-06-12 15:10:54 +01:00
|
|
|
|
|
|
|
chmod -R +w $out
|
2013-06-11 13:52:36 +01:00
|
|
|
'';
|
|
|
|
|
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 10:57:32 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2; # actually LGPL for the library and GPL for the rest
|
2011-10-03 21:50:08 +01: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 14:06:08 +01:00
|
|
|
}
|