about summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2011-06-07 15:56:50 +0000
committerMichael Raskin <7c6f434c@mail.ru>2011-06-07 15:56:50 +0000
commit812a94c8b071591bd3470bd544620295a9ab1ce0 (patch)
tree5dbc0e3aa6e62cb53cd66092a315ecda0d5c3dc5 /pkgs/tools/system
parent3c82ed030fd3ee3967adc92747ef8f9d93a21cd6 (diff)
downloadnixlib-812a94c8b071591bd3470bd544620295a9ab1ce0.tar
nixlib-812a94c8b071591bd3470bd544620295a9ab1ce0.tar.gz
nixlib-812a94c8b071591bd3470bd544620295a9ab1ce0.tar.bz2
nixlib-812a94c8b071591bd3470bd544620295a9ab1ce0.tar.lz
nixlib-812a94c8b071591bd3470bd544620295a9ab1ce0.tar.xz
nixlib-812a94c8b071591bd3470bd544620295a9ab1ce0.tar.zst
nixlib-812a94c8b071591bd3470bd544620295a9ab1ce0.zip
Adding IOping
svn path=/nixpkgs/trunk/; revision=27367
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/ioping/default.nix50
1 files changed, 50 insertions, 0 deletions
diff --git a/pkgs/tools/system/ioping/default.nix b/pkgs/tools/system/ioping/default.nix
new file mode 100644
index 000000000000..d721feb9d74d
--- /dev/null
+++ b/pkgs/tools/system/ioping/default.nix
@@ -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
+