ior: init at 3.0.1
This commit is contained in:
parent
6dbdbdec69
commit
8f3e3d2576
2 changed files with 31 additions and 0 deletions
29
pkgs/tools/system/ior/default.nix
Normal file
29
pkgs/tools/system/ior/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ stdenv, fetchurl, openmpi, automake, autoconf, perl }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "3.0.1";
|
||||||
|
sha256 = "039rh4z3lsj4vqjsqgakk0b7dkrdrkkzj0p1cjikpc9gn36zpghc";
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ior-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/LLNL/ior/archive/${version}.tar.gz";
|
||||||
|
inherit sha256;
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ openmpi automake autoconf perl ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
preConfigure = "./bootstrap";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "http://www.nersc.gov/users/computational-systems/cori/nersc-8-procurement/trinity-nersc-8-rfp/nersc-8-trinity-benchmarks/ior/";
|
||||||
|
description = "Parallel file system I/O performance test";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ bzizou ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2246,6 +2246,8 @@ in
|
||||||
ioping = callPackage ../tools/system/ioping { };
|
ioping = callPackage ../tools/system/ioping { };
|
||||||
|
|
||||||
iops = callPackage ../tools/system/iops { };
|
iops = callPackage ../tools/system/iops { };
|
||||||
|
|
||||||
|
ior = callPackage ../tools/system/ior { };
|
||||||
|
|
||||||
iodine = callPackage ../tools/networking/iodine { };
|
iodine = callPackage ../tools/networking/iodine { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue