2024-06-30 08:16:52 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitLab,
|
|
|
|
# , nix-update-script
|
|
|
|
|
|
|
|
autoreconfHook,
|
|
|
|
pkg-config,
|
|
|
|
sphinx,
|
|
|
|
|
|
|
|
lerc,
|
|
|
|
libdeflate,
|
|
|
|
libjpeg,
|
|
|
|
xz,
|
|
|
|
zlib,
|
|
|
|
|
|
|
|
# for passthru.tests
|
2024-05-02 00:46:19 +00:00
|
|
|
# , libgeotiff
|
|
|
|
# , python3Packages
|
|
|
|
# , imagemagick
|
|
|
|
# , graphicsmagick
|
|
|
|
# , gdal
|
|
|
|
# , openimageio
|
|
|
|
# , freeimage
|
|
|
|
# , testers
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
|
|
pname = "libtiff";
|
|
|
|
version = "4.6.0";
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "libtiff";
|
|
|
|
repo = "libtiff";
|
|
|
|
rev = "v${finalAttrs.version}";
|
|
|
|
hash = "sha256-qCg5qjsPPynCHIg0JsPJldwVdcYkI68zYmyNAKUCoyw=";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
# FreeImage needs this patch
|
|
|
|
./headers.patch
|
|
|
|
# libc++abi 11 has an `#include <version>`, this picks up files name
|
|
|
|
# `version` in the project's include paths
|
|
|
|
./rename-version.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
mv VERSION VERSION.txt
|
|
|
|
'';
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
outputs = [
|
|
|
|
"bin"
|
|
|
|
"dev"
|
|
|
|
"dev_private"
|
|
|
|
"out"
|
|
|
|
"man"
|
|
|
|
"doc"
|
|
|
|
];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
moveToOutput include/tif_config.h $dev_private
|
|
|
|
moveToOutput include/tif_dir.h $dev_private
|
|
|
|
moveToOutput include/tif_hash_set.h $dev_private
|
|
|
|
moveToOutput include/tiffiop.h $dev_private
|
|
|
|
'';
|
|
|
|
|
|
|
|
# If you want to change to a different build system, please make
|
|
|
|
# sure cross-compilation works first!
|
2024-06-30 08:16:52 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
pkg-config
|
|
|
|
sphinx
|
2024-05-02 00:46:19 +00:00
|
|
|
];
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
buildInputs = [ lerc ];
|
|
|
|
|
2024-05-02 00:46:19 +00:00
|
|
|
# TODO: opengl support (bogus configure detection)
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
libdeflate
|
|
|
|
libjpeg
|
|
|
|
xz
|
|
|
|
zlib
|
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
# passthru = {
|
|
|
|
# tests = {
|
|
|
|
# inherit libgeotiff imagemagick graphicsmagick gdal openimageio freeimage;
|
|
|
|
# inherit (python3Packages) pillow imread;
|
|
|
|
# pkg-config = testers.hasPkgConfigModules {
|
|
|
|
# package = finalAttrs.finalPackage;
|
|
|
|
# };
|
|
|
|
# };
|
|
|
|
# updateScript = nix-update-script { };
|
|
|
|
# };
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Library and utilities for working with the TIFF image file format";
|
|
|
|
homepage = "https://libtiff.gitlab.io/libtiff";
|
|
|
|
changelog = "https://libtiff.gitlab.io/libtiff/releases/v${finalAttrs.version}.html";
|
|
|
|
license = licenses.libtiff;
|
|
|
|
platforms = platforms.unix ++ platforms.windows;
|
|
|
|
pkgConfigModules = [ "libtiff-4" ];
|
2024-06-30 08:16:52 +00:00
|
|
|
maintainers = [ ];
|
2024-05-02 00:46:19 +00:00
|
|
|
};
|
|
|
|
})
|