Adding fio, the flexible IO tester.

svn path=/nixpkgs/trunk/; revision=34275
This commit is contained in:
Lluís Batlle i Rossell 2012-05-29 14:21:55 +00:00
parent 854ebba387
commit ac1857cef1
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, fetchgit, libaio }:
stdenv.mkDerivation rec {
name = "fio-2.0.8";
src = fetchgit {
url = git://git.kernel.dk/fio.git;
rev = "cf9a74c8bd63d9db5256f1362885c740e11a1fe5";
sha256 = "b34de480bbbb9cde221d0c4557ead91790feb825a1e31c4013e222ee7f43e937";
};
buildInputs = [ libaio ];
installPhase = ''
make install prefix=$out
'';
meta = {
homepage = http://git.kernel.dk/?p=fio.git;a=summary;
description = "Flexible IO Tester - an IO benchmark tool";
license = "GPLv2";
};
}

View File

@ -692,6 +692,8 @@ let
finger_bsd = callPackage ../tools/networking/bsd-finger { };
fio = callPackage ../tools/system/fio { };
flvstreamer = callPackage ../tools/networking/flvstreamer { };
libbsd = callPackage ../development/libraries/libbsd { };