Update ioping

This commit is contained in:
Michael Raskin 2014-09-02 13:03:33 +04:00
parent 9668a7a63b
commit 23639a93fa
1 changed files with 4 additions and 8 deletions

View File

@ -10,16 +10,15 @@ let
(builtins.attrNames (builtins.removeAttrs x helperArgNames)); (builtins.attrNames (builtins.removeAttrs x helperArgNames));
sourceInfo = rec { sourceInfo = rec {
baseName="ioping"; baseName="ioping";
version="0.7"; version = "0.8";
name="${baseName}-${version}"; name="${baseName}-${version}";
url="http://ioping.googlecode.com/files/${name}.tar.gz"; url="http://ioping.googlecode.com/files/${name}.tar.gz";
hash="1c0k9gsq7rr9fqh6znn3i196l84zsm44nq3pl1b7grsnnbp2hki3";
}; };
in in
rec { rec {
src = a.fetchurl { src = a.fetchurl {
url = sourceInfo.url; url = sourceInfo.url;
sha256 = sourceInfo.hash; sha256 = "0j7yal61nby1lkg9wnr6lxfljbd7wl3n0z8khqwvc9lf57bxngz2";
}; };
inherit (sourceInfo) name version; inherit (sourceInfo) name version;
@ -40,11 +39,8 @@ rec {
platforms = with a.lib.platforms; platforms = with a.lib.platforms;
linux; linux;
license = a.lib.licenses.gpl3Plus; license = a.lib.licenses.gpl3Plus;
};
passthru = {
updateInfo = {
downloadPage = "http://code.google.com/p/ioping/downloads/list"; downloadPage = "http://code.google.com/p/ioping/downloads/list";
}; inherit version;
}; };
}) x }) x