z-lua: 1.7.2 -> 1.7.3, lua-filesystem so _ZL_USE_LFS can be used

https://github.com/skywind3000/z.lua/releases/tag/v1.7.3
This commit is contained in:
Will Dietz 2019-09-13 21:34:13 -05:00 committed by Matthieu Coudron
parent a52c77fbea
commit c659b70e86

View file

@ -2,18 +2,18 @@
stdenv.mkDerivation rec {
pname = "z-lua";
version = "1.7.2";
version = "1.7.3";
src = fetchFromGitHub {
owner = "skywind3000";
repo = "z.lua";
rev = "v${version}";
sha256 = "17klcw2iv7d636mp7fb80kjvqd3xqkzqhwz41ri1l029dxji4zzh";
sha256 = "13cfdghkprkaxgrbwsjndbza2mjxm2x774lnq7q4gfyc48mzwi70";
};
dontBuild = true;
buildInputs = [ lua ];
buildInputs = [ (lua.withPackages (p: with p; [ luafilesystem ])) ];
installPhase = ''
install -Dm755 z.lua $out/bin/z