summaryrefslogtreecommitdiffstats
path: root/pkgs/top-level/lua-packages.nix
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2019-02-06 00:31:35 +0900
committerMatthieu Coudron <mattator@gmail.com>2019-02-12 11:47:53 +0900
commit582fa48e6f5c7c2c095b6304786437f7e4f170fb (patch)
tree58becc415047ec66df69a25cb719fc76d517ad64 /pkgs/top-level/lua-packages.nix
parentf0269de17fe4fe3aeff0fb20b04e93b9c5cd4109 (diff)
luaPackages.fifo: move to generated
Diffstat (limited to 'pkgs/top-level/lua-packages.nix')
-rw-r--r--pkgs/top-level/lua-packages.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix
index ea029000bb1d..66a699db0f5a 100644
--- a/pkgs/top-level/lua-packages.nix
+++ b/pkgs/top-level/lua-packages.nix
@@ -216,32 +216,6 @@ with self; {
};
};
- fifo = buildLuaPackage rec {
- version = "0.2";
- name = "fifo-${version}";
-
- src = fetchFromGitHub {
- owner = "daurnimator";
- repo = "fifo.lua";
- rev = version;
- sha256 = "1800k7h5hxsvm05bjdr65djjml678lwb0661cll78z1ys2037nzn";
- };
-
- buildPhase = ":";
- installPhase = ''
- mkdir -p "$out/lib/lua/${lua.luaversion}"
- mv fifo.lua "$out/lib/lua/${lua.luaversion}/"
- '';
-
- meta = with stdenv.lib; {
- description = "A lua library/'class' that implements a FIFO";
- homepage = "https://github.com/daurnimator/fifo.lua";
- license = licenses.mit;
- maintainers = with maintainers; [ vcunat ];
- platforms = platforms.all;
- };
- };
-
luabitop = buildLuaPackage rec {
version = "1.0.2";
name = "bitop-${version}";