2016-10-20 04:06:50 +02:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, zlib, libjpeg, xz }:
|
2012-05-15 23:13:46 +02:00
|
|
|
|
2013-12-23 18:06:09 +01:00
|
|
|
let
|
2017-06-07 14:20:37 +02:00
|
|
|
version = "4.0.8";
|
2013-12-23 18:06:09 +01:00
|
|
|
in
|
2012-05-15 23:13:46 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libtiff-${version}";
|
2012-08-27 04:53:19 +02:00
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
src = fetchurl {
|
2016-09-15 01:31:32 +02:00
|
|
|
url = "http://download.osgeo.org/libtiff/tiff-${version}.tar.gz";
|
2017-06-07 14:20:37 +02:00
|
|
|
sha256 = "0419mh6kkhz5fkyl77gv0in8x4d2jpdpfs147y8mj86rrjlabmsr";
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
2012-08-27 04:53:19 +02:00
|
|
|
|
2017-01-18 15:50:58 +01:00
|
|
|
prePatch =let
|
|
|
|
debian = fetchurl {
|
2017-09-28 13:28:50 +02:00
|
|
|
url = http://snapshot.debian.org/archive/debian-debug/20170928T093547Z/pool/main/t/tiff/tiff_4.0.8-5.debian.tar.xz;
|
|
|
|
sha256 = "11qkiliw04dmdvdd5z2lv5hh2fiwa29qbhkxvlvmb4yslnmyywha";
|
2017-01-18 15:50:58 +01:00
|
|
|
};
|
|
|
|
in ''
|
|
|
|
tar xf '${debian}'
|
|
|
|
patches="$patches $(cat debian/patches/series | sed 's|^|debian/patches/|')"
|
|
|
|
'';
|
|
|
|
|
2017-07-11 11:14:14 +02:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
2014-08-27 01:14:09 +02:00
|
|
|
|
2013-12-23 18:06:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ zlib libjpeg xz ]; #TODO: opengl support (bogus configure detection)
|
2009-10-29 15:19:58 +01:00
|
|
|
|
2012-05-15 23:13:46 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-10-27 23:05:38 +02:00
|
|
|
doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
|
2013-12-23 18:06:09 +01:00
|
|
|
|
2014-07-30 18:04:57 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-10-29 15:19:58 +01:00
|
|
|
description = "Library and utilities for working with the TIFF image file format";
|
2016-11-24 02:33:32 +01:00
|
|
|
homepage = http://download.osgeo.org/libtiff;
|
2014-07-30 18:04:57 +02:00
|
|
|
license = licenses.libtiff;
|
2014-08-12 19:07:05 +02:00
|
|
|
platforms = platforms.unix;
|
2009-10-29 15:19:58 +01:00
|
|
|
};
|
2003-11-06 16:24:19 +01:00
|
|
|
}
|