2018-11-07 08:14:20 +01:00
|
|
|
{ stdenv
|
2018-11-27 11:11:03 +01:00
|
|
|
, fetchurl
|
2012-05-15 23:13:46 +02:00
|
|
|
|
2018-11-07 08:14:20 +01:00
|
|
|
, pkgconfig
|
2012-08-27 04:53:19 +02:00
|
|
|
|
2018-11-07 08:14:20 +01:00
|
|
|
, zlib
|
|
|
|
, libjpeg
|
|
|
|
, xz
|
|
|
|
}:
|
2012-08-27 04:53:19 +02:00
|
|
|
|
2018-11-07 08:14:20 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-11-06 17:04:00 +01:00
|
|
|
version = "4.1.0";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libtiff";
|
2018-11-27 11:11:03 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.osgeo.org/libtiff/tiff-${version}.tar.gz";
|
2019-11-06 17:04:00 +01:00
|
|
|
sha256 = "0d46bdvxdiv59lxnb0xz9ywm8arsr6xsapi5s6y6vnys2wjz6aax";
|
2018-11-07 08:14:20 +01:00
|
|
|
};
|
2017-01-18 15:50:58 +01:00
|
|
|
|
2017-07-11 11:14:14 +02:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
2014-08-27 01:14:09 +02:00
|
|
|
|
2018-11-27 11:11:03 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-12-23 18:06:09 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2018-01-08 08:19:47 +01:00
|
|
|
doCheck = true; # not cross;
|
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";
|
2020-04-01 03:11:51 +02: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
|
|
|
}
|