luaPackages.vicious 2.1.3 -> 2.2.0

I also became new project maintainer
This commit is contained in:
Jörg Thalheim 2017-03-30 20:06:37 +02:00
parent b6c93177e7
commit 3d5e451f05
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA

View file

@ -293,7 +293,7 @@ let
maintainers = [ maintainers.koral ];
};
};
luastdlib = buildLuaPackage {
name = "stdlib";
@ -468,18 +468,20 @@ let
vicious = stdenv.mkDerivation rec {
name = "vicious-${version}";
version = "2.1.3";
version = "2.2.0";
src = fetchzip {
url = "http://git.sysphere.org/vicious/snapshot/vicious-${version}.tar.xz";
sha256 = "1c901siza5vpcbkgx99g1vkqiki5qgkzx2brnj4wrpbsbfzq0bcq";
src = fetchFromGitHub {
owner = "Mic92";
repo = "vicious";
rev = "v${version}";
sha256 = "0dhy0vklrhqrnmxb9pyqbfvkwwy86lwysk93pzg1j1zwprx366fj";
};
meta = with stdenv.lib; {
description = "Vicious widgets for window managers";
homepage = http://git.sysphere.org/vicious/;
homepage = https://github.com/Mic92/vicious;
license = licenses.gpl2;
maintainers = with maintainers; [ makefu ];
maintainers = with maintainers; [ makefu mic92 ];
platforms = platforms.linux;
};