1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
{
stdenv,
lib,
asciidoc,
brotli,
cmake,
fetchFromGitHub,
giflib,
gtest,
lcms2,
libjpeg,
libhwy,
libpng,
ninja,
openexr,
pkg-config,
python3Minimal,
unstableGitUpdater,
}:
stdenv.mkDerivation {
pname = "jpegli";
version = "0-unstable-2026-04-30";
src = fetchFromGitHub {
owner = "google";
repo = "jpegli";
rev = "7a57896e68a8ab861ded9857b2d3a402868d3d9e";
hash = "sha256-lnmLS4ueQhPLUfIY0G+FhqsHpn9aFDDtHVQg6+TIkbQ=";
fetchSubmodules = true;
};
outputs = [
"out"
"bin"
"dev"
"man"
"benchmark"
];
strictDeps = true;
nativeBuildInputs = [
asciidoc
cmake
ninja
pkg-config
python3Minimal
];
buildInputs = [
brotli
giflib
gtest
lcms2
libhwy
libjpeg
libpng
openexr
];
cmakeFlags = [
(lib.cmakeBool "JPEGXL_ENABLE_JPEGLI_LIBJPEG" false)
(lib.cmakeBool "JPEGXL_BUNDLE_LIBPNG" false)
(lib.cmakeBool "JPEGXL_FORCE_SYSTEM_BROTLI" true)
(lib.cmakeBool "JPEGXL_FORCE_SYSTEM_GTEST" true)
(lib.cmakeBool "JPEGXL_FORCE_SYSTEM_LCMS2" true)
(lib.cmakeBool "JPEGXL_FORCE_SYSTEM_HWY" true)
# Enable hardware-dependent optimizations
(lib.cmakeBool "JPEGXL_ENABLE_SIZELESS_VECTORS" true)
(lib.cmakeBool "JPEGXL_ENABLE_AVX512" true)
(lib.cmakeBool "JPEGXL_ENABLE_AVX512_SPR" true)
(lib.cmakeBool "JPEGXL_ENABLE_AVX512_ZEN4" true)
(lib.cmakeFeature "CMAKE_POLICY_VERSION_MINIMUM" "3.5")
];
# Move `benchmark_xl` into a separate output to avoid a file collision
# with the `benchmark_xl` binary provided by `libjxl`.
postInstall = ''
moveToOutput "bin/benchmark_xl" "$benchmark"
'';
doCheck = true;
passthru = {
updateScript = unstableGitUpdater { hardcodeZeroVersion = true; };
};
meta = {
description = "Improved JPEG encoder and decoder implementation";
homepage = "https://github.com/google/jpegli";
license = lib.licenses.bsd3;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [
jwillikers
leiserfg
];
mainProgram = "cjpegli";
};
}
|