mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
f5daf2b700
svn path=/nixpkgs/trunk/; revision=8532
17 lines
421 B
Nix
17 lines
421 B
Nix
{stdenv, fetchurl, zlib, libjpeg, libpng, libtiff, pam}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "cups-1.2.10";
|
|
|
|
src = fetchurl {
|
|
url = http://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/cups/1.2.10/cups-1.2.10-source.tar.bz2;
|
|
sha256 = "0dmvjl513kqbb7m4m0b22wa4xvn9avdyihr7fi3n2ly5as93n6v0";
|
|
};
|
|
|
|
buildInputs = [zlib libjpeg libpng libtiff pam];
|
|
|
|
preBuild = "
|
|
makeFlagsArray=(INITDIR=$out/etc/rc.d)
|
|
";
|
|
}
|