Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
Merge #78978: lua5: Fix src URLs
Browse files Browse the repository at this point in the history
The rebuilds happen because changing the end-part of URL
changes the name of the resulting file as placed into nix store
(those names were wrong/confusing before this change)
  • Loading branch information
vcunat committed Feb 1, 2020
2 parents f9bb054 + d13360b commit 31ab6fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/interpreters/lua-5/interpreter.nix
Expand Up @@ -17,7 +17,7 @@ self = stdenv.mkDerivation rec {
version = "${luaversion}.${sourceVersion.patch}";

src = fetchurl {
url = "https://www.lua.org/ftp/${pname}-${luaversion}.tar.gz";
url = "https://www.lua.org/ftp/${pname}-${version}.tar.gz";
sha256 = hash;
};

Expand Down

0 comments on commit 31ab6fd

Please sign in to comment.