Merge pull request #1198 from bcardiff/fix/nix-zig-url

The download location for zig changed
This commit is contained in:
Richard Feldman 2021-04-15 18:19:39 -04:00 committed by GitHub
commit 6e60738f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ if isMacOS then
src = pkgs.fetchurl {
inherit sha256;
name = "${archiveName}.tar.xz";
url = "https://ziglang.org/builds/${archiveName}.tar.xz";
url = "https://ziglang.org/download/${version}/${archiveName}.tar.xz";
};
phases = [ "installPhase" ];
installPhase = ''