2010-06-07 10:24:06 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam, openssl
|
2010-12-14 14:30:12 +01:00
|
|
|
, dbus, libusb, acl }:
|
2005-10-21 15:06:08 +02:00
|
|
|
|
2012-01-20 19:08:54 +01:00
|
|
|
let
|
2012-01-26 16:27:03 +01:00
|
|
|
version = "1.5.0";
|
2012-01-20 19:08:54 +01:00
|
|
|
in
|
2005-10-21 15:06:08 +02:00
|
|
|
stdenv.mkDerivation {
|
2009-05-06 16:05:32 +02:00
|
|
|
name = "cups-${version}";
|
2009-11-05 14:33:36 +01:00
|
|
|
|
2011-08-18 14:52:22 +02:00
|
|
|
passthru = { inherit version; };
|
|
|
|
|
2005-10-21 15:06:08 +02:00
|
|
|
src = fetchurl {
|
2009-05-06 16:05:32 +02:00
|
|
|
url = "http://ftp.easysw.com/pub/cups/${version}/cups-${version}-source.tar.bz2";
|
2011-10-06 11:57:32 +02:00
|
|
|
sha256 = "0czc0bmrm31jy03inm6w2mbr5s9q9xk6s1x5x4kddx2qlml9pyf6";
|
2005-10-21 15:06:08 +02:00
|
|
|
};
|
2007-04-02 18:22:10 +02:00
|
|
|
|
2012-01-20 19:08:50 +01: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 19:46:09 +01:00
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ pam dbus ]
|
|
|
|
++ [ libusb ]
|
2012-01-20 19:08:50 +01:00
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ acl ] ;
|
2009-10-30 10:46:51 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ openssl ];
|
2007-04-02 19:30:11 +02:00
|
|
|
|
2009-10-30 13:33:34 +01:00
|
|
|
configureFlags = "--localstatedir=/var --enable-dbus"; # --with-dbusdir
|
2007-04-02 19:30:11 +02:00
|
|
|
|
2009-10-30 10:46:51 +01: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 13:33:34 +01:00
|
|
|
# Idem for /etc.
|
|
|
|
"PAMDIR=$(out)/etc/pam.d"
|
|
|
|
"DBUSDIR=$(out)/etc/dbus-1"
|
|
|
|
"INITDIR=$(out)/etc/rc.d"
|
2009-11-05 14:33:36 +01:00
|
|
|
"XINETD=$(out)/etc/xinetd.d"
|
|
|
|
# Idem for /usr.
|
|
|
|
"MENUDIR=$(out)/share/applications"
|
|
|
|
"ICONDIR=$(out)/share/icons"
|
2009-10-30 10:46:51 +01:00
|
|
|
# Work around a Makefile bug.
|
|
|
|
"CUPS_PRIMARY_SYSTEM_GROUP=root"
|
|
|
|
];
|
2008-11-07 14:36:57 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.cups.org/;
|
|
|
|
description = "A standards-based printing system for UNIX";
|
2011-10-06 11:57:32 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2; # actually LGPL for the library and GPL for the rest
|
2011-10-03 22:50:08 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.urkud stdenv.lib.maintainers.simons ];
|
2012-01-20 19:08:50 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2008-11-07 14:36:57 +01:00
|
|
|
};
|
2005-10-21 15:06:08 +02:00
|
|
|
}
|