1 { lib, stdenv, fetchFromGitHub, mpi, perl, autoreconfHook }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-pSjptDfiPlaToXe1yHyk9MQMC9PqcVSjqAmWLD11iOM=";
14 nativeBuildInputs = [ autoreconfHook ];
15 buildInputs = [ mpi perl ];
17 enableParallelBuilding = true;
20 homepage = "https://ior.readthedocs.io/en/latest/";
21 description = "Parallel file system I/O performance test";
22 license = licenses.gpl2Only;
23 platforms = platforms.linux;
24 maintainers = with maintainers; [ bzizou ];