forked from mirrors/nixpkgs
lua*Packages.basexx: init at 0.4.0
This commit is contained in:
parent
597a5936d3
commit
40140997cb
1 changed files with 26 additions and 0 deletions
|
@ -43,6 +43,32 @@ let
|
|||
inherit lua;
|
||||
};
|
||||
|
||||
basexx = buildLuaPackage rec {
|
||||
version = "0.4.0";
|
||||
name = "basexx-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "aiq";
|
||||
repo = "basexx";
|
||||
rev = "v${version}";
|
||||
sha256 = "12y0ng9bp5b98iax35pnp0kc0mb42spv1cbywvfq6amik6l0ya7g";
|
||||
};
|
||||
|
||||
buildPhase = ":";
|
||||
installPhase = ''
|
||||
install -Dt "$out/lib/lua/${lua.luaversion}/" \
|
||||
lib/basexx.lua
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Lua library for base2, base16, base32, base64, base85";
|
||||
homepage = "https://github.com/aiq/basexx";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ vcunat ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
};
|
||||
|
||||
bit32 = buildLuaPackage rec {
|
||||
version = "5.3.0";
|
||||
name = "bit32-${version}";
|
||||
|
|
Loading…
Add table
Reference in a new issue