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

let
  version = "3.0.1";
  sha256 = "039rh4z3lsj4vqjsqgakk0b7dkrdrkkzj0p1cjikpc9gn36zpghc";
in

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

  src = fetchurl {
    url = "https://github.com/LLNL/ior/archive/${version}.tar.gz";
    inherit sha256;
  };

  buildInputs = [ openmpi automake autoconf perl ];

  enableParallelBuilding = true;

  preConfigure = "./bootstrap";

  meta = with stdenv.lib; {
    homepage = https://www.nersc.gov/users/computational-systems/cori/nersc-8-procurement/trinity-nersc-8-rfp/nersc-8-trinity-benchmarks/ior/;
    description = "Parallel file system I/O performance test";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ bzizou ];
  };
}