luaPackages.vicious: init at 2.1.3

vicious is a module for creating widgets on window managers.
This commit adds the library and a wrapper lua file for easy importing.

I use the library with the awesome window manager via luaModules:

    services.xserver.windowManager.awesome.luaModules = [
      pkgs.luaPackages.vicious
    ];
This commit is contained in:
makefu
2015-08-06 12:59:08 +02:00
parent f63fd63eb1
commit 86c973d429
2 changed files with 26 additions and 0 deletions
+25
View File
@@ -400,4 +400,29 @@ let
'';
};
vicious = stdenv.mkDerivation rec {
name = "vicious-${version}";
version = "2.1.3";
src = fetchzip {
url = "http://git.sysphere.org/vicious/snapshot/vicious-${version}.tar.xz";
sha256 = "1c901siza5vpcbkgx99g1vkqiki5qgkzx2brnj4wrpbsbfzq0bcq";
};
meta = with stdenv.lib; {
description = "vicious widgets for window managers";
homepage = http://git.sysphere.org/vicious/;
license = licenses.gpl2;
maintainers = with maintainers; [ makefu ];
platforms = platforms.linux;
};
buildInputs = [ lua ];
installPhase = ''
mkdir -p $out/lib/lua/${lua.luaversion}/
cp -r . $out/lib/lua/${lua.luaversion}/vicious/
printf "package.path = '$out/lib/lua/${lua.luaversion}/?/init.lua;' .. package.path\nreturn require((...) .. '.init')\n" > $out/lib/lua/${lua.luaversion}/vicious.lua
'';
};
}; in self