Merge pull request #134014 from primeos/llvmPackages_git

llvmPackages_git: 2021-07-16 -> 2021-08-03

authored by

Michael Weiss and committed by
GitHub
72526765 069cd2bd

+4 -4
+4 -4
pkgs/development/compilers/llvm/git/default.nix
··· 18 18 }: 19 19 20 20 let 21 - release_version = "13.0.0"; 21 + release_version = "14.0.0"; 22 22 candidate = ""; # empty or "rcN" 23 23 dash-candidate = lib.optionalString (candidate != "") "-${candidate}"; 24 - rev = "f98ed74f6910f8b09e77497aeb30c860c433610d"; # When using a Git commit 25 - rev-version = "unstable-2021-07-16"; # When using a Git commit 24 + rev = "7d9d926a1861e2f6876943d47f297e2a08a57392"; # When using a Git commit 25 + rev-version = "unstable-2021-08-03"; # When using a Git commit 26 26 version = if rev != "" then rev-version else "${release_version}${dash-candidate}"; 27 27 targetConfig = stdenv.targetPlatform.config; 28 28 ··· 30 30 owner = "llvm"; 31 31 repo = "llvm-project"; 32 32 rev = if rev != "" then rev else "llvmorg-${version}"; 33 - sha256 = "1dp0n3rpg60xr321mvn2gi268pfcs6ii4nnwgsi2lix0di4h3ccb"; 33 + sha256 = "0v9jk49raazy5vhccagnmf6c3cxjv56rwg3670k9x9snihx2782r"; 34 34 }; 35 35 36 36 llvm_meta = {