1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
nixpkgs/pkgs/tools/system/fio/default.nix

35 lines
737 B
Nix
Raw Normal View History

2015-04-23 14:10:54 +01:00
{ stdenv, fetchFromGitHub, libaio, zlib }:
2015-09-13 23:51:49 +01:00
let version = "2.2.10"; in
stdenv.mkDerivation rec {
2015-04-23 14:10:54 +01:00
name = "fio-${version}";
src = fetchFromGitHub {
owner = "axboe";
repo = "fio";
rev = "fio-${version}";
2015-09-13 23:51:49 +01:00
sha256 = "0hg72k8cifw6lc46kyiic7ai4gqn2819d6g998vmx01jnlcixp8q";
};
2015-04-23 14:10:54 +01:00
buildInputs = [ libaio zlib ];
enableParallelBuilding = true;
configurePhase = ''
2015-09-13 23:51:49 +01:00
substituteInPlace tools/plot/fio2gnuplot \
--replace /usr/share/fio $out/share/fio
2015-04-23 14:10:54 +01:00
./configure
'';
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 = stdenv.lib.licenses.gpl2;
};
}