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

34 lines
858 B
Nix
Raw Normal View History

2015-05-13 16:31:26 +03:00
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, xz }:
let
2015-09-15 04:31:53 +03:00
version = "4.0.6";
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"
];
2015-09-15 04:31:53 +03:00
sha256 = "136nf1rj9dp5jgv1p7z4dk0xy3wki1w0vfjbk82f645m0w4samsd";
};
2015-07-27 01:25:53 +03:00
outputs = [ "out" "doc" "man" ];
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ zlib libjpeg xz ]; #TODO: opengl support (bogus configure detection)
enableParallelBuilding = true;
doCheck = true;
meta = with stdenv.lib; {
description = "Library and utilities for working with the TIFF image file format";
homepage = http://www.remotesensing.org/libtiff/;
license = licenses.libtiff;
platforms = platforms.unix;
};
}