Skip to content

Commit 237c868

Browse files
committed
julia_110: revert upstream commit breaking build
1 parent c806233 commit 237c868

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

pkgs/development/compilers/julia/default.nix

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ callPackage }:
1+
{ callPackage, fetchpatch2 }:
22

33
let
44
juliaWithPackages = callPackage ../../julia-modules { };
@@ -64,6 +64,14 @@ in
6464
hash = "sha256-NPojubjOgy32CWlD/TDzI764Ca7cMsFj9r7vUdUW9Oc=";
6565
patches = [
6666
./patches/1.10/0002-skip-failing-and-flaky-tests.patch
67+
# Revert https://github.com/JuliaLang/julia/pull/55354
68+
# [build] Some improvements to the LLVM build system
69+
# Related: https://github.com/JuliaLang/julia/issues/55617
70+
(fetchpatch2 {
71+
url = "https://github.com/JuliaLang/julia/commit/0be37db8c5b5a440bd9a11960ae9c998027b7337.patch";
72+
revert = true;
73+
hash = "sha256-gXC3LE3AuHMlSdA4dW+rbAhJpSB6ZMaz9X1qrHDPX7Y=";
74+
})
6775
];
6876
})
6977
{ });

0 commit comments

Comments
 (0)