mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
32a8fbde4f
svn path=/nixpkgs/branches/x-updates/; revision=22636
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam, openssl
|
|
, dbus, libusb }:
|
|
|
|
let version = "1.4.4"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "cups-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://ftp.easysw.com/pub/cups/${version}/cups-${version}-source.tar.bz2";
|
|
md5 = "8776403ad60fea9e85eab9c04d88560d";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig zlib libjpeg libpng libtiff pam dbus libusb ];
|
|
|
|
propagatedBuildInputs = [ openssl ];
|
|
|
|
configureFlags = "--localstatedir=/var --enable-dbus"; # --with-dbusdir
|
|
|
|
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"
|
|
# Idem for /usr.
|
|
"MENUDIR=$(out)/share/applications"
|
|
"ICONDIR=$(out)/share/icons"
|
|
# Work around a Makefile bug.
|
|
"CUPS_PRIMARY_SYSTEM_GROUP=root"
|
|
];
|
|
|
|
meta = {
|
|
homepage = http://www.cups.org/;
|
|
description = "A standards-based printing system for UNIX";
|
|
license = "GPLv2"; # actually LGPL for the library and GPL for the rest
|
|
};
|
|
}
|