luaPackages.fifo: move to generated

This commit is contained in:
Matthieu Coudron
2019-02-12 11:47:53 +09:00
parent f0269de17f
commit 582fa48e6f
3 changed files with 36 additions and 41 deletions
-26
View File
@@ -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}";