Merge #78978: lua5: Fix src URLs

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)
This commit is contained in:
Vladimír Čunát 2020-02-01 09:46:11 +01:00
commit 31ab6fdec5
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -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;
};