summaryrefslogtreecommitdiffstats
path: root/pkgs/top-level/lua-packages.nix
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2019-06-06 14:23:49 +0900
committerMatthieu Coudron <mattator@gmail.com>2019-06-06 14:39:14 +0900
commit2d77d620cea90c166edac625e9548ba140462b15 (patch)
treefe1306ea1bfbdbcac53dbfcb4e7eef181b2ea8e8 /pkgs/top-level/lua-packages.nix
parent6fe580e30bc6408cf7e67c29b3d8478e0e618ff5 (diff)
luaPackages.luaposix: move to generated
Diffstat (limited to 'pkgs/top-level/lua-packages.nix')
-rw-r--r--pkgs/top-level/lua-packages.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix
index c4f9d1429adf..83ec4cdb4e69 100644
--- a/pkgs/top-level/lua-packages.nix
+++ b/pkgs/top-level/lua-packages.nix
@@ -345,40 +345,6 @@ with self; {
};
};
- luaposix = buildLuaPackage rec {
- name = "posix-${version}";
- version = "34.0.4";
-
- src = fetchFromGitHub {
- owner = "luaposix";
- repo = "luaposix";
- rev = "release-v${version}";
- sha256 = "0p5583vidsm7s97zihf47c34vscwgbl86axrnj44j328v45kxb2z";
- };
-
- propagatedBuildInputs = [ std_normalize bit32 ];
-
- buildPhase = ''
- ${lua}/bin/lua build-aux/luke \
- package="luaposix" \
- version="${version}"
- '';
-
- installPhase = ''
- ${lua}/bin/lua build-aux/luke install --quiet \
- INST_LIBDIR="$out/lib/lua/${lua.luaversion}" \
- INST_LUADIR="$out/share/lua/${lua.luaversion}"
- '';
-
- meta = with stdenv.lib; {
- description = "Lua bindings for POSIX API";
- homepage = "https://github.com/luaposix/luaposix";
- license = licenses.mit;
- maintainers = with maintainers; [ vyp lblasc ];
- platforms = platforms.unix;
- };
- };
-
luasec = buildLuaPackage rec {
name = "sec-0.8";