depot/third_party/nixpkgs/pkgs/tools/system/ior/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

26 lines
647 B
Nix

{ lib, stdenv, fetchFromGitHub, mpi, perl, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "ior";
version = "3.3.0";
src = fetchFromGitHub {
owner = "hpc";
repo = pname;
rev = version;
sha256 = "sha256-pSjptDfiPlaToXe1yHyk9MQMC9PqcVSjqAmWLD11iOM=";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ mpi perl ];
enableParallelBuilding = true;
meta = with 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 ];
};
}