2015-05-13 14:31:26 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, xz }:
|
2012-05-15 22:13:46 +01:00
|
|
|
|
2013-12-23 17:06:09 +00:00
|
|
|
let
|
2015-09-15 02:31:53 +01:00
|
|
|
version = "4.0.6";
|
2013-12-23 17:06:09 +00:00
|
|
|
in
|
2012-05-15 22:13:46 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libtiff-${version}";
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
src = fetchurl {
|
2010-07-20 00:24:16 +01:00
|
|
|
urls =
|
2012-05-15 22:13:46 +01:00
|
|
|
[ "ftp://ftp.remotesensing.org/pub/libtiff/tiff-${version}.tar.gz"
|
|
|
|
"http://download.osgeo.org/libtiff/tiff-${version}.tar.gz"
|
2010-07-20 00:24:16 +01:00
|
|
|
];
|
2015-09-15 02:31:53 +01:00
|
|
|
sha256 = "136nf1rj9dp5jgv1p7z4dk0xy3wki1w0vfjbk82f645m0w4samsd";
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2014-08-27 00:14:09 +01:00
|
|
|
outputs = [ "dev" "out" "bin" "doc" ];
|
|
|
|
|
2013-12-23 17:06:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ zlib libjpeg xz ]; #TODO: opengl support (bogus configure detection)
|
2009-10-29 14:19:58 +00:00
|
|
|
|
2012-05-15 22:13:46 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-12-23 17:06:09 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2014-07-30 17:04:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-10-29 14:19:58 +00:00
|
|
|
description = "Library and utilities for working with the TIFF image file format";
|
2013-01-29 12:32:55 +00:00
|
|
|
homepage = http://www.remotesensing.org/libtiff/;
|
2014-07-30 17:04:57 +01:00
|
|
|
license = licenses.libtiff;
|
2014-08-12 18:07:05 +01:00
|
|
|
platforms = platforms.unix;
|
2009-10-29 14:19:58 +00:00
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
}
|