llvmPackages_9: 9.0.0 -> 9.0.1

Fetch from github release page,
as that's where https://releases.llvm.org/9.0.1 redirects.
This commit is contained in:
Will Dietz
2020-01-01 12:42:58 -06:00
parent 302a77a02c
commit 21b0162383
10 changed files with 13 additions and 13 deletions
@@ -5,15 +5,15 @@
}:
let
release_version = "9.0.0";
release_version = "9.0.1";
version = release_version; # differentiating these is important for rc's
fetch = name: sha256: fetchurl {
url = "https://releases.llvm.org/${release_version}/${name}-${version}.src.tar.xz";
url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-${release_version}/${name}-${version}.src.tar.xz";
inherit sha256;
};
clang-tools-extra_src = fetch "clang-tools-extra" "045cldmcfd8s33wyjlviifgpnw52yqicd6v4ysvdg4i96p78c77a";
clang-tools-extra_src = fetch "clang-tools-extra" "01vgzd4k1q93nfs8gyl83mjlc4x0qsgfqw32lacbjzdxg0mdfvxj";
tools = stdenv.lib.makeExtensible (tools: let
callPackage = newScope (tools // { inherit stdenv cmake libxml2 python isl release_version version fetch; });