nixpkgs/pkgs/development/libraries/libtiff/default.nix

26 lines
622 B
Nix
Raw Normal View History

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