mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
Merge pull request #31031 from orivej/luastdlib
luastdlib: 41.2.0 -> 41.2.1
This commit is contained in:
commit
5f613663d9
|
@ -438,12 +438,15 @@ let
|
|||
};
|
||||
|
||||
|
||||
luastdlib = buildLuaPackage {
|
||||
name = "stdlib";
|
||||
luastdlib = buildLuaPackage rec {
|
||||
name = "stdlib-${version}";
|
||||
version = "41.2.1";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/lua-stdlib/lua-stdlib/archive/release.zip";
|
||||
sha256 = "0636absdfjx8ybglwydmqxwfwmqz1c4b9s5mhxlgm4ci18lw3hms";
|
||||
src = fetchFromGitHub {
|
||||
owner = "lua-stdlib";
|
||||
repo = "lua-stdlib";
|
||||
rev = "release-v${version}";
|
||||
sha256 = "03wd1qvkrj50fjszb2apzdkc8d5bpfbbi9pajl0vbrlzzmmi3jlq";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook unzip ];
|
||||
|
|
Loading…
Reference in a new issue