lua*Packages.luaoss: init at 20170903

This commit is contained in:
Vladimír Čunát 2018-07-30 16:40:41 +02:00
parent 05df847150
commit 837a9a4677
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -347,6 +347,28 @@ let
};
};
luaossl = buildLuaPackage rec {
name = "luaossl-${version}";
version = "20170903";
src = fetchurl {
url = "https://www.25thandclement.com/~william/projects/releases/${name}.tgz";
sha256 = "10392bvd0lzyibipblgiss09zlqh3a5zgqg1b9lgbybpqb9cv2k3";
};
preConfigure = ''export prefix=$out'';
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;
};
};
luaposix = buildLuaPackage rec {
name = "posix-${version}";
version = "34.0.4";