mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
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:
commit
31ab6fdec5
@ -17,7 +17,7 @@ self = stdenv.mkDerivation rec {
|
|||||||
version = "${luaversion}.${sourceVersion.patch}";
|
version = "${luaversion}.${sourceVersion.patch}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.lua.org/ftp/${pname}-${luaversion}.tar.gz";
|
url = "https://www.lua.org/ftp/${pname}-${version}.tar.gz";
|
||||||
sha256 = hash;
|
sha256 = hash;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user