2010-06-07 09:24:06 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam, openssl
|
2010-12-14 13:30:12 +00:00
|
|
|
, dbus, libusb, acl }:
|
2005-10-21 14:06:08 +01:00
|
|
|
|
2012-01-20 18:08:54 +00:00
|
|
|
let
|
2012-01-26 15:27:03 +00:00
|
|
|
version = "1.5.0";
|
2012-01-20 18:08:54 +00:00
|
|
|
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";
|
2011-10-06 10:57:32 +01:00
|
|
|
sha256 = "0czc0bmrm31jy03inm6w2mbr5s9q9xk6s1x5x4kddx2qlml9pyf6";
|
2005-10-21 14:06:08 +01:00
|
|
|
};
|
2007-04-02 17:22:10 +01:00
|
|
|
|
2012-01-20 18:08:50 +00:00
|
|
|
# The following code looks strange, but it had to be arranged like
|
|
|
|
# this in order to avoid major rebuilds while testing portability to
|
|
|
|
# non-Linux platforms. This should be cleaned once the expression is
|
|
|
|
# stable.
|
|
|
|
buildInputs = [ pkgconfig zlib libjpeg libpng libtiff ]
|
2012-01-21 18:46:09 +00:00
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ pam dbus ]
|
|
|
|
++ [ libusb ]
|
2012-01-20 18:08:50 +00:00
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ 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
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.cups.org/;
|
|
|
|
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 ];
|
2012-01-20 18:08:50 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2008-11-07 13:36:57 +00:00
|
|
|
};
|
2005-10-21 14:06:08 +01:00
|
|
|
}
|