Adding IOping
svn path=/nixpkgs/trunk/; revision=27367
This commit is contained in:
parent
3c82ed030f
commit
812a94c8b0
50
pkgs/tools/system/ioping/default.nix
Normal file
50
pkgs/tools/system/ioping/default.nix
Normal file
@ -0,0 +1,50 @@
|
||||
x@{builderDefsPackage
|
||||
, ...}:
|
||||
builderDefsPackage
|
||||
(a :
|
||||
let
|
||||
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||
[];
|
||||
|
||||
buildInputs = map (n: builtins.getAttr n x)
|
||||
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||||
sourceInfo = rec {
|
||||
baseName="ioping";
|
||||
version="0.4";
|
||||
name="${baseName}-${version}";
|
||||
url="http://ioping.googlecode.com/files/${name}.tar.gz";
|
||||
hash="064pfjhg2a4hj6ly0wc9z85awiqry55n6wpx8kxzl9qasls0q447";
|
||||
};
|
||||
in
|
||||
rec {
|
||||
src = a.fetchurl {
|
||||
url = sourceInfo.url;
|
||||
sha256 = sourceInfo.hash;
|
||||
};
|
||||
|
||||
inherit (sourceInfo) name version;
|
||||
inherit buildInputs;
|
||||
|
||||
/* doConfigure should be removed if not needed */
|
||||
phaseNames = ["doMakeInstall"];
|
||||
makeFlags = [
|
||||
''PREFIX="$out"''
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Filesystem IO delay time measurer";
|
||||
maintainers = with a.lib.maintainers;
|
||||
[
|
||||
raskin
|
||||
];
|
||||
platforms = with a.lib.platforms;
|
||||
linux;
|
||||
license = a.lib.licenses.gpl3Plus;
|
||||
};
|
||||
passthru = {
|
||||
updateInfo = {
|
||||
downloadPage = "http://code.google.com/p/ioping/downloads/list";
|
||||
};
|
||||
};
|
||||
}) x
|
||||
|
@ -818,6 +818,8 @@ let
|
||||
|
||||
inetutils = callPackage ../tools/networking/inetutils { };
|
||||
|
||||
ioping = callPackage ../tools/system/ioping {};
|
||||
|
||||
iodine = callPackage ../tools/networking/iodine { };
|
||||
|
||||
iperf = callPackage ../tools/networking/iperf { };
|
||||
|
Loading…
Reference in New Issue
Block a user