nixpkgs/pkgs/tools/system/ior/default.nix
ajs124 3db28f77dc ior: 3.0.1 -> 3.2.1
also switch to github and use autoreconfHook
2020-05-10 15:58:58 +02:00

27 lines
658 B
Nix

{ 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 ];
};
}