2020-05-10 14:58:58 +01:00
|
|
|
{ stdenv, fetchFromGitHub, openmpi, perl, autoreconfHook }:
|
2016-12-15 19:01:01 +00:00
|
|
|
|
2020-05-10 14:58:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "ior";
|
2020-05-10 14:58:58 +01:00
|
|
|
version = "3.2.1";
|
2016-12-15 19:01:01 +00:00
|
|
|
|
2020-05-10 14:58:58 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hpc";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "036cg75c5vq6kijfv8f918vpm9sf1h7lyg6xr9fba7n0dwbbmycv";
|
2016-12-15 19:01:01 +00:00
|
|
|
};
|
|
|
|
|
2020-05-10 14:58:58 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ openmpi perl ];
|
2016-12-15 19:01:01 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-05-10 14:58:58 +01:00
|
|
|
homepage = "https://ior.readthedocs.io/en/latest/";
|
2016-12-15 19:01:01 +00:00
|
|
|
description = "Parallel file system I/O performance test";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ bzizou ];
|
|
|
|
};
|
|
|
|
}
|