nixpkgs/pkgs/development/libraries/libtiff/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

15 lines
352 B
Nix

{stdenv, fetchurl, zlib, libjpeg}:
assert zlib != null && libjpeg != null;
stdenv.mkDerivation {
name = "libtiff-3.8.2";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/tiff-3.8.2.tar.gz;
md5 = "fbb6f446ea4ed18955e2714934e5b698";
};
propagatedBuildInputs = [zlib libjpeg];
inherit zlib libjpeg;
}