Update Wavemon

This commit is contained in:
Michael Raskin 2014-09-02 14:17:59 +04:00
parent 7b6d33a591
commit 0d8c76057f

View file

@ -11,16 +11,15 @@ let
(builtins.attrNames (builtins.removeAttrs x helperArgNames)); (builtins.attrNames (builtins.removeAttrs x helperArgNames));
sourceInfo = rec { sourceInfo = rec {
baseName="wavemon"; baseName="wavemon";
version="0.7.5"; version = "0.7.6";
name="${baseName}-${version}"; name="${baseName}-${version}";
url="http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases/${name}.tar.bz2"; url="http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases/${name}.tar.bz2";
hash="0b1fx00aar2fsw49a10w5bpiyjpz8h8f4nrlwb1acfw36yi1pfkd";
}; };
in in
rec { rec {
src = a.fetchurl { src = a.fetchurl {
url = sourceInfo.url; url = sourceInfo.url;
sha256 = sourceInfo.hash; sha256 = "18cwlzgmwzy7z9dfr6lwd8kmkv0pqiihizm4gi0kkm52bzz6836y";
}; };
inherit (sourceInfo) name version; inherit (sourceInfo) name version;
@ -38,11 +37,9 @@ rec {
platforms = with a.lib.platforms; platforms = with a.lib.platforms;
linux; linux;
license = a.lib.licenses.gpl2Plus; license = a.lib.licenses.gpl2Plus;
}; downloadPage = "http://eden-feed.erg.abdn.ac.uk/wavemon/";
passthru = { inherit version;
updateInfo = { updateWalker = true;
downloadPage = "http://eden-feed.erg.abdn.ac.uk/wavemon/";
};
}; };
}) x }) x