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

27 lines
647 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, mpi, perl, autoreconfHook }:
2016-12-15 19:01:01 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "ior";
2021-01-19 00:57:49 +00:00
version = "3.3.0";
2016-12-15 19:01:01 +00:00
src = fetchFromGitHub {
owner = "hpc";
repo = pname;
rev = version;
2021-01-19 00:57:49 +00:00
sha256 = "sha256-pSjptDfiPlaToXe1yHyk9MQMC9PqcVSjqAmWLD11iOM=";
2016-12-15 19:01:01 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ mpi 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 ];
};
}