nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

libjxl: fix for hydra's darwin builder

+7
+7
pkgs/development/libraries/libjxl/default.nix
··· 29 29 fetchSubmodules = true; 30 30 }; 31 31 32 + # hydra's darwin machines run into https://github.com/libjxl/libjxl/issues/408 33 + # unless we disable highway's tests 34 + postPatch = lib.optional stdenv.isDarwin '' 35 + substituteInPlace third_party/highway/CMakeLists.txt \ 36 + --replace 'if(BUILD_TESTING)' 'if(false)' 37 + ''; 38 + 32 39 nativeBuildInputs = [ 33 40 asciidoc # for docs 34 41 cmake