about summary refs log tree commit diff
path: root/pkgs/tools/system/ior/default.nix
blob: eff85589a1eb8e7ef33cc482f520ae1b828fbc59 (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
{ stdenv, fetchFromGitHub, openmpi, perl, autoreconfHook }:

stdenv.mkDerivation rec {
  pname = "ior";
  version = "3.2.1";

  src = fetchFromGitHub {
    owner = "hpc";
    repo = pname;
    rev = version;
    sha256 = "036cg75c5vq6kijfv8f918vpm9sf1h7lyg6xr9fba7n0dwbbmycv";
  };

  nativeBuildInputs = [ autoreconfHook ];
  buildInputs = [ openmpi perl ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    homepage = "https://ior.readthedocs.io/en/latest/";
    description = "Parallel file system I/O performance test";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ bzizou ];
  };
}