2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv
|
2018-11-27 02:11:03 -08:00
|
|
|
, fetchurl
|
2012-05-15 14:13:46 -07:00
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
, pkg-config
|
2021-01-03 11:26:08 -08:00
|
|
|
, cmake
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2021-03-06 11:32:55 -08:00
|
|
|
, libdeflate
|
2018-11-06 23:14:20 -08:00
|
|
|
, libjpeg
|
|
|
|
, xz
|
2021-03-06 11:32:55 -08:00
|
|
|
, zlib
|
2018-11-06 23:14:20 -08:00
|
|
|
}:
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2018-11-06 23:14:20 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libtiff";
|
2021-03-06 11:32:55 -08:00
|
|
|
version = "4.2.0";
|
2018-11-27 02:11:03 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.osgeo.org/libtiff/tiff-${version}.tar.gz";
|
2021-03-06 11:32:55 -08:00
|
|
|
sha256 = "1jrkjv0xya9radddn8idxvs2gqzp3l2b1s8knlizmn7ad3jq817b";
|
2018-11-06 23:14:20 -08:00
|
|
|
};
|
2017-01-18 06:50:58 -08:00
|
|
|
|
2021-01-24 15:44:43 -08:00
|
|
|
cmakeFlags = if stdenv.isDarwin then [
|
|
|
|
"-DCMAKE_SKIP_BUILD_RPATH=OFF"
|
|
|
|
] else null;
|
|
|
|
|
2021-01-03 11:26:08 -08:00
|
|
|
# FreeImage needs this patch
|
|
|
|
patches = [ ./headers.patch ];
|
2014-08-26 16:14:09 -07:00
|
|
|
|
2021-01-03 11:26:08 -08:00
|
|
|
outputs = [ "bin" "dev" "dev_private" "out" "man" "doc" ];
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
moveToOutput include/tif_dir.h $dev_private
|
|
|
|
moveToOutput include/tif_config.h $dev_private
|
|
|
|
moveToOutput include/tiffiop.h $dev_private
|
|
|
|
'';
|
|
|
|
|
2021-01-19 04:50:04 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2013-12-23 09:06:09 -08:00
|
|
|
|
2021-03-06 11:32:55 -08:00
|
|
|
propagatedBuildInputs = [ libjpeg xz zlib ]; #TODO: opengl support (bogus configure detection)
|
|
|
|
|
|
|
|
buildInputs = [ libdeflate ]; # TODO: move all propagatedBuildInputs to buildInputs.
|
2009-10-29 07:19:58 -07:00
|
|
|
|
2012-05-15 14:13:46 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-03 11:26:08 -08:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckTarget = "test";
|
2013-12-23 09:06:09 -08:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2009-10-29 07:19:58 -07:00
|
|
|
description = "Library and utilities for working with the TIFF image file format";
|
2020-03-31 18:11:51 -07: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
|
|
|
}
|