nixpkgs/pkgs/tools/system/ior/default.nix

27 lines
656 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, openmpi, perl, autoreconfHook }:
2016-12-15 19:01:01 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "ior";
version = "3.2.1";
2016-12-15 19:01:01 +00:00
src = fetchFromGitHub {
owner = "hpc";
repo = pname;
rev = version;
sha256 = "036cg75c5vq6kijfv8f918vpm9sf1h7lyg6xr9fba7n0dwbbmycv";
2016-12-15 19:01:01 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ openmpi perl ];
2016-12-15 19:01:01 +00:00
enableParallelBuilding = true;
meta = with lib; {
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 ];
};
}