mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
129 lines
2.6 KiB
Nix
129 lines
2.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
fetchpatch,
|
|
nix-update-script,
|
|
|
|
autoreconfHook,
|
|
pkg-config,
|
|
sphinx,
|
|
|
|
lerc,
|
|
libdeflate,
|
|
libjpeg,
|
|
libwebp,
|
|
xz,
|
|
zlib,
|
|
zstd,
|
|
|
|
# for passthru.tests
|
|
libgeotiff,
|
|
python3Packages,
|
|
imagemagick,
|
|
graphicsmagick,
|
|
gdal,
|
|
openimageio,
|
|
freeimage,
|
|
testers,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libtiff";
|
|
version = "4.7.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "libtiff";
|
|
repo = "libtiff";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-SuK9/a6OUAumEe1kz1itFJGKxJzbmHkBVLMnyXhIwmQ=";
|
|
};
|
|
|
|
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
|
|
'';
|
|
|
|
outputs = [
|
|
"bin"
|
|
"dev"
|
|
"dev_private"
|
|
"out"
|
|
"man"
|
|
"doc"
|
|
];
|
|
|
|
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!
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
sphinx
|
|
];
|
|
|
|
buildInputs = [
|
|
lerc
|
|
zstd
|
|
];
|
|
|
|
# TODO: opengl support (bogus configure detection)
|
|
propagatedBuildInputs = [
|
|
libdeflate
|
|
libjpeg
|
|
# libwebp depends on us; this will cause infinite
|
|
# recursion otherwise
|
|
(libwebp.override { tiffSupport = false; })
|
|
xz
|
|
zlib
|
|
zstd
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
# Avoid flakiness like https://gitlab.com/libtiff/libtiff/-/commit/94f6f7315b1
|
|
enableParallelChecking = false;
|
|
|
|
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" ];
|
|
maintainers = teams.geospatial.members;
|
|
};
|
|
})
|