lua*Packages.cqueues: init at 20171014
This commit is contained in:
parent
1d83c4583b
commit
112021b166
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
{ fetchurl, stdenv, lua, callPackage, unzip, zziplib, pkgconfig
|
{ fetchurl, stdenv, lua, callPackage, unzip, zziplib, pkgconfig
|
||||||
, pcre, oniguruma, gnulib, tre, glibc, sqlite, openssl, expat
|
, pcre, oniguruma, gnulib, tre, glibc, sqlite, openssl, expat
|
||||||
, glib, gobjectIntrospection, libevent, zlib, autoreconfHook
|
, glib, gobjectIntrospection, libevent, zlib, autoreconfHook, gnum4
|
||||||
, mysql, postgresql, cyrus_sasl
|
, mysql, postgresql, cyrus_sasl
|
||||||
, fetchFromGitHub, libmpack, which, fetchpatch, writeText
|
, fetchFromGitHub, libmpack, which, fetchpatch, writeText
|
||||||
}:
|
}:
|
||||||
@ -72,6 +72,29 @@ let
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
cqueues = buildLuaPackage rec {
|
||||||
|
name = "cqueues-${version}";
|
||||||
|
version = "20171014";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://www.25thandclement.com/~william/projects/releases/${name}.tgz";
|
||||||
|
sha256 = "1dabhpn6r0hlln8vx9hxm34pfcm46qzgpb2apmziwg5z51fi4ksb";
|
||||||
|
};
|
||||||
|
|
||||||
|
preConfigure = ''export prefix=$out'';
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
luabitop = buildLuaPackage rec {
|
luabitop = buildLuaPackage rec {
|
||||||
version = "1.0.2";
|
version = "1.0.2";
|
||||||
name = "bitop-${version}";
|
name = "bitop-${version}";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user