mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
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:
parent
f63fd63eb1
commit
86c973d429
@ -151,6 +151,7 @@
|
|||||||
madjar = "Georges Dubus <georges.dubus@compiletoi.net>";
|
madjar = "Georges Dubus <georges.dubus@compiletoi.net>";
|
||||||
magnetophon = "Bart Brouns <bart@magnetophon.nl>";
|
magnetophon = "Bart Brouns <bart@magnetophon.nl>";
|
||||||
mahe = "Matthias Herrmann <matthias.mh.herrmann@gmail.com>";
|
mahe = "Matthias Herrmann <matthias.mh.herrmann@gmail.com>";
|
||||||
|
makefu = "Felix Richter <makefu@syntax-fehler.de>";
|
||||||
malyn = "Michael Alyn Miller <malyn@strangeGizmo.com>";
|
malyn = "Michael Alyn Miller <malyn@strangeGizmo.com>";
|
||||||
manveru = "Michael Fellinger <m.fellinger@gmail.com>";
|
manveru = "Michael Fellinger <m.fellinger@gmail.com>";
|
||||||
marcweber = "Marc Weber <marco-oweber@gmx.de>";
|
marcweber = "Marc Weber <marco-oweber@gmx.de>";
|
||||||
|
@ -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
|
}; in self
|
||||||
|
Loading…
Reference in New Issue
Block a user