* CUPS updated to 1.4.4.

svn path=/nixpkgs/branches/x-updates/; revision=22636
This commit is contained in:
Eelco Dolstra 2010-07-18 21:52:25 +00:00
parent 8acd56744f
commit 32a8fbde4f

View File

@ -1,23 +1,16 @@
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam, openssl
, dbus, libusb }:
let version = "1.4.1"; in
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";
sha256 = "1fnkq993hr8l87x6f7a7wik2spac3f7nn4wksrvwk690r8a6zxng";
md5 = "8776403ad60fea9e85eab9c04d88560d";
};
patches =
[ (fetchurl {
url = http://www.cups.org/strfiles/3332/0001-Fixed-side_cb-function-declaration-in-usb-unix.c.patch;
sha256 = "0h8fhhpzp7xngnc428040jv09yvpz5dxb9hw6sv67lnvb03fncnw";
})
];
buildInputs = [ pkgconfig zlib libjpeg libpng libtiff pam dbus libusb ];
propagatedBuildInputs = [ openssl ];