We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c806233 commit 237c868Copy full SHA for 237c868
pkgs/development/compilers/julia/default.nix
@@ -1,4 +1,4 @@
1
-{ callPackage }:
+{ callPackage, fetchpatch2 }:
2
3
let
4
juliaWithPackages = callPackage ../../julia-modules { };
@@ -64,6 +64,14 @@ in
64
hash = "sha256-NPojubjOgy32CWlD/TDzI764Ca7cMsFj9r7vUdUW9Oc=";
65
patches = [
66
./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
+ })
75
];
76
})
77
{ });
0 commit comments