summaryrefslogtreecommitdiffstats
path: root/pkgs/top-level/lua-packages.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2018-07-30 16:23:51 +0200
committerVladimír Čunát <vcunat@gmail.com>2018-07-30 16:23:51 +0200
commit3a808133d3521520f5a12742c10794a28784898a (patch)
tree99566d38f630dee896af052f955b3398778cf504 /pkgs/top-level/lua-packages.nix
parent112021b166569e309bf40e964bde7b292451a5c6 (diff)
lua*Packages.fifo: init at 0.2
Diffstat (limited to 'pkgs/top-level/lua-packages.nix')
-rw-r--r--pkgs/top-level/lua-packages.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix
index 9c7c99a763d9..d073ea96c939 100644
--- a/pkgs/top-level/lua-packages.nix
+++ b/pkgs/top-level/lua-packages.nix
@@ -95,6 +95,32 @@ let
};
};
+ 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}";