2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv
|
2018-11-27 10:11:03 +00:00
|
|
|
, fetchurl
|
2012-05-15 22:13:46 +01:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2021-01-03 19:26:08 +00:00
|
|
|
, cmake
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2018-11-07 07:14:20 +00:00
|
|
|
, zlib
|
|
|
|
, libjpeg
|
|
|
|
, xz
|
|
|
|
}:
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2018-11-07 07:14:20 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-11-06 16:04:00 +00:00
|
|
|
version = "4.1.0";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libtiff";
|
2018-11-27 10:11:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.osgeo.org/libtiff/tiff-${version}.tar.gz";
|
2019-11-06 16:04:00 +00:00
|
|
|
sha256 = "0d46bdvxdiv59lxnb0xz9ywm8arsr6xsapi5s6y6vnys2wjz6aax";
|
2018-11-07 07:14:20 +00:00
|
|
|
};
|
2017-01-18 14:50:58 +00:00
|
|
|
|
2021-01-24 23:44:43 +00:00
|
|
|
cmakeFlags = if stdenv.isDarwin then [
|
|
|
|
"-DCMAKE_SKIP_BUILD_RPATH=OFF"
|
|
|
|
] else null;
|
|
|
|
|
2021-01-03 19:26:08 +00:00
|
|
|
# FreeImage needs this patch
|
|
|
|
patches = [ ./headers.patch ];
|
2014-08-27 00:14:09 +01:00
|
|
|
|
2021-01-03 19:26:08 +00: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 12:50:04 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2013-12-23 17:06:09 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2021-01-03 19:26:08 +00:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckTarget = "test";
|
2013-12-23 17:06:09 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2009-10-29 14:19:58 +00:00
|
|
|
description = "Library and utilities for working with the TIFF image file format";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://download.osgeo.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
|
|
|
}
|