about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/ior/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/system/ior/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/system/ior/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/system/ior/default.nix b/nixpkgs/pkgs/tools/system/ior/default.nix
new file mode 100644
index 000000000000..c2616797da38
--- /dev/null
+++ b/nixpkgs/pkgs/tools/system/ior/default.nix
@@ -0,0 +1,26 @@
+{ 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 ];
+  };
+}