cceb5bcf80
svn path=/nixpkgs/branches/x-updates/; revision=22669
22 lines
542 B
Nix
22 lines
542 B
Nix
{ stdenv, fetchurl, zlib, libjpeg }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libtiff-3.9.4";
|
|
|
|
src = fetchurl {
|
|
urls =
|
|
[ ftp://ftp.remotesensing.org/pub/libtiff/tiff-3.9.4.tar.gz
|
|
http://download.osgeo.org/libtiff/tiff-3.9.4.tar.gz
|
|
];
|
|
sha256 = "19hxd773yxcs4lxlc3zfdkz5aiv705vj2jvy5srpqkxpbw3nvdv7";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zlib libjpeg ];
|
|
|
|
meta = {
|
|
description = "Library and utilities for working with the TIFF image file format";
|
|
homepage = http://www.libtiff.org/;
|
|
license = "bsd";
|
|
};
|
|
}
|