Update XDaliClock

This commit is contained in:
Michael Raskin 2014-09-02 14:22:49 +04:00
parent 85caa0942d
commit 10b4bc3c43

View File

@ -12,17 +12,16 @@ let
(builtins.attrNames (builtins.removeAttrs x helperArgNames)); (builtins.attrNames (builtins.removeAttrs x helperArgNames));
sourceInfo = rec { sourceInfo = rec {
baseName="xdaliclock"; baseName="xdaliclock";
version="2.40"; version = "2.41";
name="${baseName}-${version}"; name="${baseName}-${version}";
project="${baseName}"; project="${baseName}";
url="http://www.jwz.org/${project}/${name}.tar.gz"; url="http://www.jwz.org/${project}/${name}.tar.gz";
hash="03i8vwi9vz3gr938wr4miiymwv283mg11wgfaf2jhl6aqbmz4id7";
}; };
in in
rec { rec {
src = a.fetchurl { src = a.fetchurl {
url = sourceInfo.url; url = sourceInfo.url;
sha256 = sourceInfo.hash; sha256 = "1crkjvza692irkqm9vwgn58m8ps93n0rxigm6pasgl5dnx3p6d1d";
}; };
inherit (sourceInfo) name version; inherit (sourceInfo) name version;
@ -46,10 +45,8 @@ rec {
platforms = with a.lib.platforms; platforms = with a.lib.platforms;
linux ++ freebsd; linux ++ freebsd;
license = "free"; #TODO BSD on Gentoo, looks like MIT license = "free"; #TODO BSD on Gentoo, looks like MIT
}; downloadPage = "http://www.jwz.org/xdaliclock/";
passthru = { inherit version;
updateInfo = { updateWalker = true;
downloadPage = "http://www.jwz.org/xdaliclock/";
};
}; };
}) x }) x