2016-10-19 19:06:50 -07:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, zlib, libjpeg, xz }:
|
2012-05-15 14:13:46 -07:00
|
|
|
|
2013-12-23 09:06:09 -08:00
|
|
|
let
|
2016-11-23 17:33:32 -08:00
|
|
|
version = "4.0.7";
|
2013-12-23 09:06:09 -08:00
|
|
|
in
|
2012-05-15 14:13:46 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libtiff-${version}";
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2003-11-06 07:24:19 -08:00
|
|
|
src = fetchurl {
|
2016-09-14 16:31:32 -07:00
|
|
|
url = "http://download.osgeo.org/libtiff/tiff-${version}.tar.gz";
|
2016-11-23 17:33:32 -08:00
|
|
|
sha256 = "06ghqhr4db1ssq0acyyz49gr8k41gzw6pqb6mbn5r7jqp77s4hwz";
|
2003-11-06 07:24:19 -08:00
|
|
|
};
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2017-01-18 06:50:58 -08:00
|
|
|
prePatch =let
|
2017-05-12 08:27:18 -07:00
|
|
|
# https://lwn.net/Vulnerabilities/711777/ and more patched in *-6 -> *-7
|
2017-01-18 06:50:58 -08:00
|
|
|
debian = fetchurl {
|
2017-05-12 08:27:18 -07:00
|
|
|
url = http://http.debian.net/debian/pool/main/t/tiff/tiff_4.0.7-6.debian.tar.xz;
|
|
|
|
sha256 = "9c9048c28205bdbeb5ba36c7a194d0cd604bd137c70961607bfc8a079be5fa31";
|
2017-01-18 06:50:58 -08:00
|
|
|
};
|
|
|
|
in ''
|
|
|
|
tar xf '${debian}'
|
|
|
|
patches="$patches $(cat debian/patches/series | sed 's|^|debian/patches/|')"
|
|
|
|
'';
|
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "bin" "dev" "out" "doc" ];
|
2014-08-26 16:14:09 -07:00
|
|
|
|
2013-12-23 09:06:09 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ zlib libjpeg xz ]; #TODO: opengl support (bogus configure detection)
|
2009-10-29 07:19:58 -07:00
|
|
|
|
2012-05-15 14:13:46 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-12-23 09:06:09 -08:00
|
|
|
doCheck = true;
|
|
|
|
|
2014-07-30 09:04:57 -07:00
|
|
|
meta = with stdenv.lib; {
|
2009-10-29 07:19:58 -07:00
|
|
|
description = "Library and utilities for working with the TIFF image file format";
|
2016-11-23 17:33:32 -08:00
|
|
|
homepage = http://download.osgeo.org/libtiff;
|
2014-07-30 09:04:57 -07:00
|
|
|
license = licenses.libtiff;
|
2014-08-12 10:07:05 -07:00
|
|
|
platforms = platforms.unix;
|
2009-10-29 07:19:58 -07:00
|
|
|
};
|
2003-11-06 07:24:19 -08:00
|
|
|
}
|