nixpkgs/pkgs/development/libraries/libtiff/default.nix
Vladimír Čunát 570b0f8c54 libtiff: major update to 4.*
Also minor modification of ghostscript to work with it.
2013-01-29 14:07:30 +01:00

26 lines
636 B
Nix

{ stdenv, fetchurl, zlib, libjpeg }:
let version = "4.0.3"; in
stdenv.mkDerivation rec {
name = "libtiff-${version}";
src = fetchurl {
urls =
[ "ftp://ftp.remotesensing.org/pub/libtiff/tiff-${version}.tar.gz"
"http://download.osgeo.org/libtiff/tiff-${version}.tar.gz"
];
sha256 = "0wj8d1iwk9vnpax2h29xqc2hwknxg3s0ay2d5pxkg59ihbifn6pa";
};
propagatedBuildInputs = [ zlib libjpeg ];
enableParallelBuilding = true;
meta = {
description = "Library and utilities for working with the TIFF image file format";
homepage = http://www.remotesensing.org/libtiff/;
license = "bsd";
};
}