luaPackages.std._debug: init at 1.0

This commit is contained in:
Luka Blaskovic 2018-02-25 21:15:00 +00:00 committed by Jörg Thalheim
parent 43be4ebfb1
commit 2f0ff59d89

View File

@ -726,6 +726,34 @@ let
};
};
std._debug = buildLuaPackage rec {
name = "std._debug-${version}";
version = "1.0";
src = fetchFromGitHub {
owner = "lua-stdlib";
repo = "_debug";
rev = "v${version}";
sha256 = "01kfs6k9j9zy4bvk13jx18ssfsmhlciyrni1x32qmxxf4wxyi65n";
};
# No Makefile.
dontBuild = true;
installPhase = ''
mkdir -p $out/share/lua/${lua.luaversion}/std
cp -r lib/std/_debug $out/share/lua/${lua.luaversion}/std/
'';
meta = with stdenv.lib; {
description = "Manage an overall debug state, and associated hint substates.";
homepage = https://lua-stdlib.github.io/_debug;
license = licenses.mit;
maintainers = with maintainers; [ lblasc ];
platforms = platforms.unix;
};
};
vicious = stdenv.mkDerivation rec {
name = "vicious-${version}";
version = "2.3.1";