llvmPackages_8: rc3 -> rc5

This commit is contained in:
Will Dietz
2019-03-12 16:39:44 -05:00
parent 145f213806
commit 91b1806476
9 changed files with 12 additions and 12 deletions
@@ -6,14 +6,14 @@
let
release_version = "8.0.0";
version = release_version + "rc3"; # differentiating these is important for rc's
version = release_version + "rc5"; # differentiating these is important for rc's
fetch = name: sha256: fetchurl {
url = "https://prereleases.llvm.org/${release_version}/rc3/${name}-${version}.src.tar.xz";
url = "https://prereleases.llvm.org/${release_version}/rc5/${name}-${version}.src.tar.xz";
inherit sha256;
};
clang-tools-extra_src = fetch "clang-tools-extra" "070rxrqhc3flgx5vrnzzs4b39l42amnrh4xwf02rxbmvd9n6gva6";
clang-tools-extra_src = fetch "clang-tools-extra" "0705xl8ysjc9pdrggyc51zjq3kwcrckhz4cf4z8wbgi7x2li1djd";
tools = stdenv.lib.makeExtensible (tools: let
callPackage = newScope (tools // { inherit stdenv cmake libxml2 python isl release_version version fetch; });