cb7dfb9652
svn path=/nixpkgs/branches/xorg-7.5/; revision=18027
19 lines
463 B
Nix
19 lines
463 B
Nix
{ stdenv, fetchurl, zlib, libjpeg }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libtiff-3.9.1";
|
|
|
|
src = fetchurl {
|
|
url = ftp://ftp.remotesensing.org/pub/libtiff/tiff-3.9.1.tar.gz;
|
|
sha256 = "168yssav47xih2y17m7psj4k6ngnfai300bbfznc75hn3crxfdil";
|
|
};
|
|
|
|
propagatedBuildInputs = [zlib libjpeg];
|
|
|
|
meta = {
|
|
description = "Library and utilities for working with the TIFF image file format";
|
|
homepage = http://www.libtiff.org/;
|
|
license = "bsd";
|
|
};
|
|
}
|