summary refs log tree commit diff
path: root/pkgs/tools/system/fio/default.nix
blob: 5d6e322faccc57c9750b590e07d90e3d30626364 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, fetchFromGitHub, libaio, zlib }:

let version = "2.2.7"; in

stdenv.mkDerivation rec {
  name = "fio-${version}";

  src = fetchFromGitHub {
    owner = "axboe";
    repo = "fio";
    rev = "fio-${version}";
    sha256 = "02k528n97xp1ly3d0mdn0lgwqlpn49b644696m75kcr0hn07382v";
  };

  buildInputs = [ libaio zlib ];

  enableParallelBuilding = true;

  configurePhase = ''
    substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
    ./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;
  };
}