Skip to content

Commit

Permalink
llvm7: use final release tarballs now that they're available
Browse files Browse the repository at this point in the history
  • Loading branch information
dtzWill committed Sep 23, 2018
1 parent 0c45947 commit fca31e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/compilers/llvm/7/default.nix
Expand Up @@ -6,11 +6,11 @@

let
release_version = "7.0.0";
version = release_version + "rc3"; # differentiating these is important for rc's
version = release_version; # differentiating these is important for rc's

fetch = name: sha256: fetchurl {
name = "${name}-${release_version}.src.tar.xz"; # Hopefully yields same hash with final release
url = "http://prereleases.llvm.org/${release_version}/rc3/${name}-${version}.src.tar.xz";
url = "http://releases.llvm.org/${release_version}/${name}-${version}.src.tar.xz";
inherit sha256;
};

Expand Down

0 comments on commit fca31e1

Please sign in to comment.