2014-09-19 19:40:37 +00:00
|
|
|
/* This file defines the composition for Lua packages. It has
|
|
|
|
been factored out of all-packages.nix because there are many of
|
|
|
|
them. Also, because most Nix expressions for Lua packages are
|
|
|
|
trivial, most are actually defined here. I.e. there's no function
|
|
|
|
for each package in a separate file: the call to the function would
|
|
|
|
be almost as must code as the function itself. */
|
|
|
|
|
2018-07-21 00:44:44 +00:00
|
|
|
{ fetchurl, stdenv, lua, callPackage, unzip, zziplib, pkgconfig
|
|
|
|
, pcre, oniguruma, gnulib, tre, glibc, sqlite, openssl, expat
|
2018-12-02 11:41:15 +00:00
|
|
|
, glib, gobject-introspection, libevent, zlib, autoreconfHook, gnum4
|
2017-12-26 18:40:42 +00:00
|
|
|
, mysql, postgresql, cyrus_sasl
|
2018-02-25 20:48:48 +00:00
|
|
|
, fetchFromGitHub, libmpack, which, fetchpatch, writeText
|
2019-01-30 14:13:15 +00:00
|
|
|
, pkgs
|
|
|
|
, fetchgit
|
|
|
|
, lib
|
2014-10-12 19:04:52 +00:00
|
|
|
}:
|
2014-09-19 19:40:37 +00:00
|
|
|
|
2014-09-23 11:56:29 +00:00
|
|
|
let
|
2019-01-30 14:13:15 +00:00
|
|
|
packages = ( self:
|
|
|
|
|
|
|
|
let
|
|
|
|
luaAtLeast = lib.versionAtLeast lua.luaversion;
|
|
|
|
luaOlder = lib.versionOlder lua.luaversion;
|
|
|
|
isLua51 = (lib.versions.majorMinor lua.version) == "5.1";
|
|
|
|
isLua52 = (lib.versions.majorMinor lua.version) == "5.2";
|
2018-07-05 22:06:48 +00:00
|
|
|
isLua53 = lua.luaversion == "5.3";
|
2017-10-09 12:21:48 +00:00
|
|
|
isLuaJIT = (builtins.parseDrvName lua.name).name == "luajit";
|
2017-01-27 10:49:04 +00:00
|
|
|
|
2019-01-30 14:13:15 +00:00
|
|
|
lua-setup-hook = callPackage ../development/interpreters/lua-5/setup-hook.nix { };
|
|
|
|
|
|
|
|
# Check whether a derivation provides a lua module.
|
|
|
|
hasLuaModule = drv: drv ? luaModule ;
|
|
|
|
|
|
|
|
callPackage = pkgs.newScope self;
|
|
|
|
|
|
|
|
requiredLuaModules = drvs: with stdenv.lib; let
|
|
|
|
modules = filter hasLuaModule drvs;
|
|
|
|
in unique ([lua] ++ modules ++ concatLists (catAttrs "requiredLuaModules" modules));
|
|
|
|
|
|
|
|
# Convert derivation to a lua module.
|
|
|
|
toLuaModule = drv:
|
|
|
|
drv.overrideAttrs( oldAttrs: {
|
|
|
|
# Use passthru in order to prevent rebuilds when possible.
|
|
|
|
passthru = (oldAttrs.passthru or {})// {
|
|
|
|
luaModule = lua;
|
|
|
|
requiredLuaModules = requiredLuaModules drv.propagatedBuildInputs;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2017-01-27 10:49:04 +00:00
|
|
|
platformString =
|
|
|
|
if stdenv.isDarwin then "macosx"
|
|
|
|
else if stdenv.isFreeBSD then "freebsd"
|
|
|
|
else if stdenv.isLinux then "linux"
|
|
|
|
else if stdenv.isSunOS then "solaris"
|
|
|
|
else throw "unsupported platform";
|
|
|
|
|
2019-02-04 11:30:58 +00:00
|
|
|
buildLuaApplication = args: buildLuarocksPackage ({namePrefix="";} // args );
|
|
|
|
|
|
|
|
buildLuarocksPackage = with pkgs.lib; makeOverridable( callPackage ../development/interpreters/lua-5/build-lua-package.nix {
|
|
|
|
inherit toLuaModule;
|
2019-02-17 12:18:49 +00:00
|
|
|
inherit lua;
|
2019-02-04 11:30:58 +00:00
|
|
|
});
|
2019-01-30 14:13:15 +00:00
|
|
|
in
|
|
|
|
with self; {
|
|
|
|
|
|
|
|
getLuaPathList = majorVersion: [
|
|
|
|
"lib/lua/${majorVersion}/?.lua" "share/lua/${majorVersion}/?.lua"
|
|
|
|
"share/lua/${majorVersion}/?/init.lua" "lib/lua/${majorVersion}/?/init.lua"
|
|
|
|
];
|
|
|
|
getLuaCPathList = majorVersion: [
|
|
|
|
"lib/lua/${majorVersion}/?.so" "share/lua/${majorVersion}/?.so" "share/lua/${majorVersion}/?/init.so"
|
|
|
|
];
|
2014-09-19 19:40:37 +00:00
|
|
|
|
2016-06-12 02:11:31 +00:00
|
|
|
# helper functions for dealing with LUA_PATH and LUA_CPATH
|
|
|
|
getPath = lib : type : "${lib}/lib/lua/${lua.luaversion}/?.${type};${lib}/share/lua/${lua.luaversion}/?.${type}";
|
|
|
|
getLuaPath = lib : getPath lib "lua";
|
|
|
|
getLuaCPath = lib : getPath lib "so";
|
|
|
|
|
2014-09-19 19:40:37 +00:00
|
|
|
#define build lua package function
|
2018-02-25 20:48:48 +00:00
|
|
|
buildLuaPackage = callPackage ../development/lua-modules/generic {
|
|
|
|
inherit lua writeText;
|
|
|
|
};
|
2014-09-19 19:40:37 +00:00
|
|
|
|
2019-01-30 14:13:15 +00:00
|
|
|
|
|
|
|
inherit toLuaModule lua-setup-hook;
|
2019-02-04 11:30:58 +00:00
|
|
|
inherit buildLuarocksPackage buildLuaApplication;
|
2019-01-30 14:13:15 +00:00
|
|
|
inherit requiredLuaModules luaOlder luaAtLeast
|
2019-02-14 05:32:04 +00:00
|
|
|
isLua51 isLua52 isLua53 isLuaJIT lua callPackage;
|
2019-01-30 14:13:15 +00:00
|
|
|
|
2019-02-04 11:30:58 +00:00
|
|
|
# wraps programs in $out/bin with valid LUA_PATH/LUA_CPATH
|
|
|
|
wrapLua = callPackage ../development/interpreters/lua-5/wrap-lua.nix {
|
|
|
|
inherit lua; inherit (pkgs) makeSetupHook makeWrapper;
|
|
|
|
};
|
|
|
|
|
2014-09-23 14:01:02 +00:00
|
|
|
luarocks = callPackage ../development/tools/misc/luarocks {
|
|
|
|
inherit lua;
|
|
|
|
};
|
|
|
|
|
2019-01-22 06:06:07 +00:00
|
|
|
luarocks-nix = callPackage ../development/tools/misc/luarocks/luarocks-nix.nix { };
|
|
|
|
|
2018-02-25 21:12:31 +00:00
|
|
|
bit32 = buildLuaPackage rec {
|
|
|
|
version = "5.3.0";
|
|
|
|
name = "bit32-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "keplerproject";
|
|
|
|
repo = "lua-compat-5.2";
|
|
|
|
rev = "bitlib-${version}";
|
|
|
|
sha256 = "1ipqlbvb5w394qwhm2f3w6pdrgy8v4q8sps5hh3pqz14dcqwakhj";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
cc ${if stdenv.isDarwin then "-bundle -undefined dynamic_lookup -all_load" else "-shared"} -Ic-api lbitlib.c -o bit32.so
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/lib/lua/${lua.luaversion}
|
|
|
|
install -p bit32.so $out/lib/lua/${lua.luaversion}
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Lua 5.2 bit manipulation library";
|
|
|
|
homepage = "http://www.lua.org/manual/5.2/manual.html#6.7";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ lblasc ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-07-30 15:08:48 +00:00
|
|
|
compat53 = buildLuaPackage rec {
|
|
|
|
version = "0.7";
|
|
|
|
name = "compat53-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "keplerproject";
|
|
|
|
repo = "lua-compat-5.3";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "02a14nvn7aggg1yikj9h3dcf8aqjbxlws1bfvqbpfxv9d5phnrpz";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
postConfigure = ''
|
|
|
|
CFLAGS+=" -shared $(pkg-config --libs ${if isLuaJIT then "luajit" else "lua"})"
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
cc lstrlib.c $CFLAGS -o string.so
|
|
|
|
cc ltablib.c $CFLAGS -o table.so
|
|
|
|
cc lutf8lib.c $CFLAGS -o utf8.so
|
|
|
|
'';
|
|
|
|
|
2019-05-01 08:57:13 +00:00
|
|
|
# The hook in ../development/lua-modules/generic/default.nix
|
|
|
|
# is strict about share vs. lib for _PATH and _CPATH.
|
2018-07-30 15:08:48 +00:00
|
|
|
installPhase = ''
|
2019-05-01 08:57:13 +00:00
|
|
|
install -Dt "$out/share/lua/${lua.luaversion}/compat53" compat53/*.lua
|
|
|
|
install -Dt "$out/lib/lua/${lua.luaversion}/compat53" *.so
|
2018-07-30 15:08:48 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Compatibility module providing Lua-5.3-style APIs for Lua 5.2 and 5.1";
|
|
|
|
homepage = "https://github.com/keplerproject/lua-compat-5.3";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ vcunat ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-03-04 11:36:23 +00:00
|
|
|
cqueues = buildLuaPackage rec {
|
|
|
|
name = "cqueues-${version}";
|
|
|
|
version = "20171014";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.25thandclement.com/~william/projects/releases/${name}.tgz";
|
|
|
|
sha256 = "1dabhpn6r0hlln8vx9hxm34pfcm46qzgpb2apmziwg5z51fi4ksb";
|
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''export prefix=$out'';
|
|
|
|
|
2019-04-23 08:52:43 +00:00
|
|
|
# https://github.com/wahern/cqueues/issues/216
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-DCQUEUES_VERSION=${version}" ];
|
|
|
|
|
2019-03-04 11:36:23 +00:00
|
|
|
nativeBuildInputs = [ gnum4 ];
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A type of event loop for Lua";
|
|
|
|
homepage = "https://www.25thandclement.com/~william/projects/cqueues.html";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ vcunat ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-03-01 00:57:02 +00:00
|
|
|
luacyrussasl = buildLuaPackage rec {
|
|
|
|
version = "1.1.0";
|
|
|
|
name = "lua-cyrussasl-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "JorjBauer";
|
|
|
|
repo = "lua-cyrussasl";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "14kzm3vk96k2i1m9f5zvpvq4pnzaf7s91h5g4h4x2bq1mynzw2s1";
|
|
|
|
};
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray=(
|
|
|
|
CFLAGS="-O2 -fPIC"
|
|
|
|
LDFLAGS="-O -shared -fpic -lsasl2"
|
|
|
|
LUAPATH="$out/share/lua/${lua.luaversion}"
|
|
|
|
CPATH="$out/lib/lua/${lua.luaversion}"
|
|
|
|
);
|
|
|
|
mkdir -p $out/{share,lib}/lua/${lua.luaversion}
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ cyrus_sasl ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://github.com/JorjBauer/lua-cyrussasl";
|
|
|
|
description = "Cyrus SASL library for Lua 5.1+";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-09-02 15:08:56 +00:00
|
|
|
luaexpat = buildLuaPackage rec {
|
|
|
|
version = "1.3.0";
|
|
|
|
name = "expat-${version}";
|
2017-10-13 03:48:17 +00:00
|
|
|
|
2014-09-02 15:08:56 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://matthewwild.co.uk/projects/luaexpat/luaexpat-${version}.tar.gz";
|
|
|
|
sha256 = "1hvxqngn0wf5642i5p3vcyhg3pmp102k63s9ry4jqyyqc1wkjq6h";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ expat ];
|
|
|
|
|
2017-01-31 05:05:07 +00:00
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace '-shared' '-bundle -undefined dynamic_lookup -all_load'
|
|
|
|
'';
|
|
|
|
|
2014-09-02 15:08:56 +00:00
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray=(
|
2016-06-09 14:36:09 +00:00
|
|
|
LUA_LDIR="$out/share/lua/${lua.luaversion}"
|
2014-09-02 15:08:56 +00:00
|
|
|
LUA_INC="-I${lua}/include" LUA_CDIR="$out/lib/lua/${lua.luaversion}"
|
2015-10-15 11:57:38 +00:00
|
|
|
EXPAT_INC="-I${expat.dev}/include");
|
2014-09-02 15:08:56 +00:00
|
|
|
'';
|
|
|
|
|
2018-07-05 21:49:08 +00:00
|
|
|
disabled = isLua53 || isLuaJIT;
|
2017-10-09 12:27:42 +00:00
|
|
|
|
2017-10-13 03:48:17 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "SAX XML parser based on the Expat library";
|
2014-09-02 15:08:56 +00:00
|
|
|
homepage = "http://matthewwild.co.uk/projects/luaexpat";
|
2017-10-13 03:48:17 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ flosse ];
|
|
|
|
platforms = platforms.unix;
|
2014-09-02 15:08:56 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-03-01 00:57:02 +00:00
|
|
|
luadbi = buildLuaPackage rec {
|
|
|
|
name = "luadbi-${version}";
|
2019-06-10 19:14:56 +00:00
|
|
|
version = "0.7.2";
|
2018-09-22 20:27:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mwild1";
|
|
|
|
repo = "luadbi";
|
|
|
|
rev = "v${version}";
|
2019-06-10 19:14:56 +00:00
|
|
|
sha256 = "167ivwmczhp98bxzpz3wdxcfj6vi0a10gpi7rdfjs2rbfwkzqvjh";
|
2017-03-01 00:57:02 +00:00
|
|
|
};
|
|
|
|
|
2019-06-10 19:14:56 +00:00
|
|
|
MYSQL_INC = [ "-I${mysql.connector-c}/include/mysql" ];
|
|
|
|
MYSQL_LDFLAGS= [
|
|
|
|
"-lmysqlclient"
|
|
|
|
"-L${mysql.connector-c}/lib/mysql"
|
|
|
|
];
|
2018-09-22 20:27:35 +00:00
|
|
|
|
2019-06-10 19:14:56 +00:00
|
|
|
nativeBuildInputs = [ mysql.client ];
|
|
|
|
buildInputs = [ mysql.connector-c postgresql sqlite ];
|
2017-03-01 00:57:02 +00:00
|
|
|
|
2018-09-22 20:27:35 +00:00
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
|
2017-12-09 11:52:28 +00:00
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace '-shared' '-bundle -undefined dynamic_lookup -all_load'
|
|
|
|
'';
|
|
|
|
|
2018-09-22 20:27:35 +00:00
|
|
|
installFlags = [
|
|
|
|
"LUA_CDIR=$(out)/lib/lua/${lua.luaversion}"
|
|
|
|
"LUA_LDIR=$(out)/share/lua/${lua.luaversion}"
|
2017-03-01 00:57:02 +00:00
|
|
|
];
|
|
|
|
|
2018-09-22 20:27:35 +00:00
|
|
|
installTargets = [
|
|
|
|
"install_lua" "install_mysql" "install_psql" "install_sqlite3"
|
|
|
|
];
|
2017-03-01 00:57:02 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-09-22 20:27:35 +00:00
|
|
|
homepage = https://github.com/mwild1/luadbi;
|
|
|
|
license = licenses.mit;
|
2017-03-01 00:57:02 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-09-02 15:08:56 +00:00
|
|
|
luafilesystem = buildLuaPackage rec {
|
2018-04-30 08:59:57 +00:00
|
|
|
version = "1.7.0";
|
2017-03-01 00:57:02 +00:00
|
|
|
name = "filesystem-${version}";
|
2017-10-13 03:48:17 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "keplerproject";
|
|
|
|
repo = "luafilesystem";
|
2017-03-01 00:57:02 +00:00
|
|
|
rev = "v${stdenv.lib.replaceChars ["."] ["_"] version}";
|
2018-04-30 08:59:57 +00:00
|
|
|
sha256 = "0fibrasshlgpa71m9wkpjxwmylnxpcf06rpqbaa0qwvqh94nhwby";
|
2014-09-23 14:01:02 +00:00
|
|
|
};
|
2017-10-13 03:46:51 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace config --replace "CC= gcc" "";
|
|
|
|
''
|
2017-02-07 20:08:55 +00:00
|
|
|
+ stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace config \
|
|
|
|
--replace 'LIB_OPTION= -shared' '###' \
|
|
|
|
--replace '#LIB_OPTION= -bundle' 'LIB_OPTION= -bundle'
|
|
|
|
substituteInPlace Makefile --replace '10.3' '10.5'
|
|
|
|
'';
|
2017-10-13 03:48:17 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Lua library complementing filesystem-related functions";
|
2014-09-19 19:40:37 +00:00
|
|
|
homepage = "https://github.com/keplerproject/luafilesystem";
|
2017-10-13 03:48:17 +00:00
|
|
|
license = licenses.mit;
|
2014-09-19 19:40:37 +00:00
|
|
|
maintainers = with maintainers; [ flosse ];
|
2017-10-13 03:48:17 +00:00
|
|
|
platforms = platforms.unix;
|
2014-09-19 19:40:37 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-07-30 14:40:41 +00:00
|
|
|
luaossl = buildLuaPackage rec {
|
|
|
|
name = "luaossl-${version}";
|
2019-05-21 14:19:19 +00:00
|
|
|
version = "20181207";
|
2018-07-30 14:40:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-05-21 14:19:19 +00:00
|
|
|
url = "https://github.com/wahern/luaossl/releases/download/rel-${version}/luaossl-rel-${version}.zip";
|
|
|
|
sha256 = "194r6db80ksh4zh8d2k35q6vci9zbrfvkanjl280y6ij2xyhkvj7";
|
2018-07-30 14:40:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''export prefix=$out'';
|
|
|
|
|
2019-05-21 14:19:19 +00:00
|
|
|
nativeBuildInputs = [ unzip ];
|
2018-07-30 14:40:41 +00:00
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Comprehensive binding to OpenSSL for Lua 5.1+";
|
|
|
|
homepage = "https://www.25thandclement.com/~william/projects/luaossl.html";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ vcunat ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-09-02 15:08:56 +00:00
|
|
|
luasec = buildLuaPackage rec {
|
2019-05-21 15:15:11 +00:00
|
|
|
name = "sec-0.8";
|
2017-10-13 03:48:17 +00:00
|
|
|
|
2015-07-19 21:19:20 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "brunoos";
|
|
|
|
repo = "luasec";
|
2017-01-27 10:37:55 +00:00
|
|
|
rev = "lua${name}";
|
2019-05-21 15:15:11 +00:00
|
|
|
sha256 = "1cgb7ihnrrfr59a2da4d3chr7lqpid98xpglmzhv3hrpg4x5sksz";
|
2014-09-02 15:08:56 +00:00
|
|
|
};
|
|
|
|
|
2019-05-01 09:08:08 +00:00
|
|
|
propagatedBuildInputs = [ luasocket ];
|
2014-09-02 15:08:56 +00:00
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray=(
|
2017-01-27 10:49:04 +00:00
|
|
|
${platformString}
|
2019-05-01 09:08:08 +00:00
|
|
|
LUAPATH="$out/share/lua/${lua.luaversion}"
|
2014-09-02 15:08:56 +00:00
|
|
|
LUACPATH="$out/lib/lua/${lua.luaversion}"
|
|
|
|
INC_PATH="-I${lua}/include"
|
|
|
|
LIB_PATH="-L$out/lib");
|
|
|
|
'';
|
|
|
|
|
2017-10-13 03:48:17 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Lua binding for OpenSSL library to provide TLS/SSL communication";
|
2014-09-02 15:08:56 +00:00
|
|
|
homepage = "https://github.com/brunoos/luasec";
|
2017-10-13 03:48:17 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ flosse ];
|
|
|
|
platforms = platforms.unix;
|
2014-09-02 15:08:56 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-09-23 14:01:02 +00:00
|
|
|
luasocket = buildLuaPackage rec {
|
|
|
|
name = "socket-${version}";
|
2015-07-19 21:20:12 +00:00
|
|
|
version = "3.0-rc1";
|
2017-10-13 03:48:17 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "diegonehab";
|
|
|
|
repo = "luasocket";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1chs7z7a3i3lck4x7rz60ziwbf793gw169hpjdfca8y4yf1hzsxk";
|
2014-09-19 19:40:37 +00:00
|
|
|
};
|
2015-07-19 21:20:12 +00:00
|
|
|
|
2016-09-17 11:10:01 +00:00
|
|
|
patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
|
2018-11-29 02:46:20 +00:00
|
|
|
substituteInPlace src/makefile \
|
2016-08-24 19:26:53 +00:00
|
|
|
--replace 10.3 10.5
|
2014-09-19 19:40:37 +00:00
|
|
|
'';
|
2015-07-19 21:20:12 +00:00
|
|
|
|
2016-09-17 11:10:01 +00:00
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray=(
|
|
|
|
LUAV=${lua.luaversion}
|
2017-01-27 10:49:04 +00:00
|
|
|
PLAT=${platformString}
|
2018-11-29 02:46:20 +00:00
|
|
|
CC=''${CC}
|
|
|
|
LD=''${CC}
|
2016-09-17 11:14:54 +00:00
|
|
|
prefix=$out
|
2016-09-17 11:10:01 +00:00
|
|
|
);
|
|
|
|
'';
|
|
|
|
|
2018-04-25 03:20:18 +00:00
|
|
|
doCheck = false; # fails to find itself
|
|
|
|
|
2017-03-01 00:57:02 +00:00
|
|
|
installTargets = [ "install" "install-unix" ];
|
|
|
|
|
2016-09-25 14:18:08 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-10-13 03:48:17 +00:00
|
|
|
description = "Network support for Lua";
|
2014-09-19 19:40:37 +00:00
|
|
|
homepage = "http://w3.impa.br/~diego/software/luasocket/";
|
2017-10-13 03:48:17 +00:00
|
|
|
license = licenses.mit;
|
2018-01-17 05:13:23 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-10-13 03:48:17 +00:00
|
|
|
platforms = with platforms; darwin ++ linux ++ freebsd ++ illumos;
|
2014-09-19 19:40:37 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-09-24 14:02:02 +00:00
|
|
|
luxio = buildLuaPackage rec {
|
|
|
|
name = "luxio-${version}";
|
|
|
|
version = "13";
|
2017-10-13 03:48:17 +00:00
|
|
|
|
2017-09-24 14:02:02 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://git.gitano.org.uk/luxio.git/snapshot/luxio-luxio-13.tar.bz2";
|
|
|
|
sha256 = "1hvwslc25q7k82rxk461zr1a2041nxg7sn3sw3w0y5jxf0giz2pz";
|
|
|
|
};
|
2017-10-13 03:48:17 +00:00
|
|
|
|
2017-09-24 14:44:43 +00:00
|
|
|
nativeBuildInputs = [ which pkgconfig ];
|
2017-10-13 03:48:17 +00:00
|
|
|
|
2017-09-24 14:44:43 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
2017-10-13 03:48:17 +00:00
|
|
|
|
2017-09-24 14:02:02 +00:00
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray=(
|
|
|
|
INST_LIBDIR="$out/lib/lua/${lua.luaversion}"
|
|
|
|
INST_LUADIR="$out/share/lua/${lua.luaversion}"
|
|
|
|
LUA_BINDIR="$out/bin"
|
2017-09-24 14:44:43 +00:00
|
|
|
INSTALL=install
|
2017-09-24 14:02:02 +00:00
|
|
|
);
|
|
|
|
'';
|
2017-10-13 03:48:17 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Lightweight UNIX I/O and POSIX binding for Lua";
|
|
|
|
homepage = "https://www.gitano.org.uk/luxio/";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ richardipsum ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2017-09-24 14:02:02 +00:00
|
|
|
};
|
|
|
|
|
2015-03-19 11:31:36 +00:00
|
|
|
|
2017-10-31 10:38:12 +00:00
|
|
|
luastdlib = buildLuaPackage rec {
|
|
|
|
name = "stdlib-${version}";
|
|
|
|
version = "41.2.1";
|
2017-10-13 03:48:17 +00:00
|
|
|
|
2017-10-31 10:38:12 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lua-stdlib";
|
|
|
|
repo = "lua-stdlib";
|
|
|
|
rev = "release-v${version}";
|
|
|
|
sha256 = "03wd1qvkrj50fjszb2apzdkc8d5bpfbbi9pajl0vbrlzzmmi3jlq";
|
2014-09-23 14:01:02 +00:00
|
|
|
};
|
2017-10-13 03:48:17 +00:00
|
|
|
|
2017-09-19 02:27:05 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook unzip ];
|
2017-10-13 03:48:17 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "General Lua libraries";
|
|
|
|
homepage = "https://github.com/lua-stdlib/lua-stdlib";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ vyp ];
|
|
|
|
platforms = platforms.linux;
|
2014-09-23 14:01:02 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
lrexlib = buildLuaPackage rec {
|
|
|
|
name = "lrexlib-${version}";
|
2017-07-08 18:42:16 +00:00
|
|
|
version = "2.8.0";
|
2017-10-13 03:48:17 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rrthomas";
|
|
|
|
repo = "lrexlib";
|
|
|
|
rev = "rel-2-8-0";
|
2017-07-08 18:42:16 +00:00
|
|
|
sha256 = "1c62ny41b1ih6iddw5qn81gr6dqwfffzdp7q6m8x09zzcdz78zhr";
|
2014-09-23 14:01:02 +00:00
|
|
|
};
|
2017-10-13 03:48:17 +00:00
|
|
|
|
|
|
|
buildInputs = [ luastdlib pcre luarocks oniguruma gnulib tre glibc ];
|
2014-09-23 14:01:02 +00:00
|
|
|
|
|
|
|
buildPhase = let
|
2017-07-08 18:42:16 +00:00
|
|
|
luaVariable = ''LUA_PATH="${luastdlib}/share/lua/${lua.luaversion}/?/init.lua;${luastdlib}/share/lua/${lua.luaversion}/?.lua"'';
|
|
|
|
pcreVariable = "PCRE_DIR=${pcre.out} PCRE_INCDIR=${pcre.dev}/include";
|
2014-09-23 14:01:02 +00:00
|
|
|
onigVariable = "ONIG_DIR=${oniguruma}";
|
|
|
|
gnuVariable = "GNU_INCDIR=${gnulib}/lib";
|
|
|
|
treVariable = "TRE_DIR=${tre}";
|
2016-08-30 00:11:09 +00:00
|
|
|
posixVariable = "POSIX_DIR=${glibc.dev}";
|
2014-09-23 14:01:02 +00:00
|
|
|
in ''
|
2017-07-08 18:42:16 +00:00
|
|
|
sed -e 's@$(LUAROCKS) $(LUAROCKS_COMMAND) $$i;@$(LUAROCKS) $(LUAROCKS_COMMAND) $$i ${pcreVariable} ${onigVariable} ${gnuVariable} ${treVariable} ${posixVariable};@' -i Makefile
|
2014-09-23 14:01:02 +00:00
|
|
|
${luaVariable} make
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -pv $out;
|
|
|
|
cp -r luarocks/lib $out;
|
|
|
|
'';
|
|
|
|
|
2017-10-13 03:48:17 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Lua bindings of various regex library APIs";
|
|
|
|
homepage = "https://github.com/rrthomas/lrexlib";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ vyp ];
|
|
|
|
platforms = platforms.linux;
|
2014-09-23 14:01:02 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
luasqlite3 = buildLuaPackage rec {
|
|
|
|
name = "sqlite3-${version}";
|
2017-10-13 03:48:17 +00:00
|
|
|
version = "2.3.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "LuaDist";
|
|
|
|
repo = "luasql-sqlite3";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "05k8zs8nsdmlwja3hdhckwknf7ww5cvbp3sxhk2xd1i3ij6aa10b";
|
2014-09-23 14:01:02 +00:00
|
|
|
};
|
|
|
|
|
2018-07-05 21:49:08 +00:00
|
|
|
disabled = isLua53;
|
|
|
|
|
2017-10-13 03:48:17 +00:00
|
|
|
buildInputs = [ sqlite ];
|
2014-09-23 14:01:02 +00:00
|
|
|
|
|
|
|
patches = [ ../development/lua-modules/luasql.patch ];
|
|
|
|
|
2017-10-13 03:48:17 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Database connectivity for Lua";
|
2014-09-23 14:01:02 +00:00
|
|
|
homepage = "https://github.com/LuaDist/luasql-sqlite3";
|
2017-10-13 03:48:17 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ vyp ];
|
|
|
|
platforms = platforms.linux;
|
2014-09-23 14:01:02 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-07-08 07:19:43 +00:00
|
|
|
lfs = buildLuaPackage rec {
|
|
|
|
name = "lfs-${version}";
|
|
|
|
version = "1.7.0.2";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "keplerproject";
|
|
|
|
repo = "luafilesystem";
|
|
|
|
rev = "v" + stdenv.lib.replaceStrings ["."] ["_"] version;
|
|
|
|
sha256 = "0zmprgkm9zawdf9wnw0v3w6ibaj442wlc6alp39hmw610fl4vghi";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Portable library for filesystem operations";
|
|
|
|
homepage = https://keplerproject.github.com/luafilesystem;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ vcunat ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-11-27 20:04:28 +00:00
|
|
|
|
2019-02-05 15:00:19 +00:00
|
|
|
vicious = toLuaModule(stdenv.mkDerivation rec {
|
2015-08-06 06:29:07 +00:00
|
|
|
name = "vicious-${version}";
|
2017-12-22 09:06:27 +00:00
|
|
|
version = "2.3.1";
|
2015-08-06 06:29:07 +00:00
|
|
|
|
2017-03-30 18:06:37 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Mic92";
|
|
|
|
repo = "vicious";
|
|
|
|
rev = "v${version}";
|
2017-12-22 09:06:27 +00:00
|
|
|
sha256 = "1yzhjn8rsvjjsfycdc993ms6jy2j5jh7x3r2ax6g02z5n0anvnbx";
|
2015-08-06 06:29:07 +00:00
|
|
|
};
|
|
|
|
|
2017-10-13 03:48:17 +00:00
|
|
|
buildInputs = [ lua ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/lib/lua/${lua.luaversion}/
|
|
|
|
cp -r . $out/lib/lua/${lua.luaversion}/vicious/
|
|
|
|
printf "package.path = '$out/lib/lua/${lua.luaversion}/?/init.lua;' .. package.path\nreturn require((...) .. '.init')\n" > $out/lib/lua/${lua.luaversion}/vicious.lua
|
|
|
|
'';
|
|
|
|
|
2015-08-06 06:29:07 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-12-22 09:06:27 +00:00
|
|
|
description = "A modular widget library for the awesome window manager";
|
2017-03-30 18:06:37 +00:00
|
|
|
homepage = https://github.com/Mic92/vicious;
|
2015-08-06 06:29:07 +00:00
|
|
|
license = licenses.gpl2;
|
2017-03-30 18:06:37 +00:00
|
|
|
maintainers = with maintainers; [ makefu mic92 ];
|
2015-08-06 06:29:07 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2019-02-05 15:00:19 +00:00
|
|
|
});
|
2015-08-06 06:29:07 +00:00
|
|
|
|
2019-01-30 14:13:15 +00:00
|
|
|
});
|
2019-03-07 06:09:33 +00:00
|
|
|
in packages
|