forked from mirrors/nixpkgs
Adding fio, the flexible IO tester.
svn path=/nixpkgs/trunk/; revision=34275
This commit is contained in:
parent
854ebba387
commit
ac1857cef1
23
pkgs/tools/system/fio/default.nix
Normal file
23
pkgs/tools/system/fio/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue