tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
llvmPackages_20: 20.1.4 -> 20.1.5
Tristan Ross
8 months ago
bc8ee2f8
eed414ca
+12
-2
2 changed files
expand all
collapse all
unified
split
pkgs
development
compilers
llvm
common
llvm
default.nix
default.nix
+11
-1
pkgs/development/compilers/llvm/common/llvm/default.nix
···
294
294
++
295
295
lib.optional (lib.versionAtLeast release_version "15")
296
296
# Just like the `llvm-lit-cfg` patch, but for `polly`.
297
297
-
(getVersionFile "llvm/polly-lit-cfg-add-libs-to-dylib-path.patch");
297
297
+
(getVersionFile "llvm/polly-lit-cfg-add-libs-to-dylib-path.patch")
298
298
+
++
299
299
+
lib.optional (lib.versions.major release_version == "20")
300
300
+
# https://github.com/llvm/llvm-project/pull/139822 adds a commit which didn't get backported but is necessary for tests.
301
301
+
(
302
302
+
fetchpatch {
303
303
+
url = "https://github.com/llvm/llvm-project/commit/ff2e8f93f6090965e82d799af43f6dfef52baa66.patch";
304
304
+
stripLen = 1;
305
305
+
hash = "sha256-CZBTZKzi4cYkZhgTB5oXIo1UdEAArg9I4vR/m0upSRk=";
306
306
+
}
307
307
+
);
298
308
299
309
nativeBuildInputs =
300
310
[
+1
-1
pkgs/development/compilers/llvm/default.nix
···
31
31
"17.0.6".officialRelease.sha256 = "sha256-8MEDLLhocshmxoEBRSKlJ/GzJ8nfuzQ8qn0X/vLA+ag=";
32
32
"18.1.8".officialRelease.sha256 = "sha256-iiZKMRo/WxJaBXct9GdAcAT3cz9d9pnAcO1mmR6oPNE=";
33
33
"19.1.7".officialRelease.sha256 = "sha256-cZAB5vZjeTsXt9QHbP5xluWNQnAHByHtHnAhVDV0E6I=";
34
34
-
"20.1.4".officialRelease.sha256 = "sha256-/WomqG2DdnUHwlVsMfpzaK/dhGV3zychfU0wLmihQac=";
34
34
+
"20.1.5".officialRelease.sha256 = "sha256-WKfY+VvAsZEEc0xYgF6+MsXDXZz7haMU6bxqmUpaHuQ=";
35
35
"21.0.0-git".gitRelease = {
36
36
rev = "5b91756c0ca7ef4d75c33c2617bfd0f9719907dc";
37
37
rev-version = "21.0.0-unstable-2025-05-11";