tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
libjxl: fix for hydra's darwin builder
Robert Scott
4 years ago
36d6673c
9a4bdda2
+7
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libjxl
default.nix
+7
pkgs/development/libraries/libjxl/default.nix
reviewed
···
29
29
fetchSubmodules = true;
30
30
};
31
31
32
32
+
# hydra's darwin machines run into https://github.com/libjxl/libjxl/issues/408
33
33
+
# unless we disable highway's tests
34
34
+
postPatch = lib.optional stdenv.isDarwin ''
35
35
+
substituteInPlace third_party/highway/CMakeLists.txt \
36
36
+
--replace 'if(BUILD_TESTING)' 'if(false)'
37
37
+
'';
38
38
+
32
39
nativeBuildInputs = [
33
40
asciidoc # for docs
34
41
cmake