summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-02-18 12:34:49 +0100
committerGitHub <noreply@github.com>2021-02-18 12:34:49 +0100
commit2278dadbdfc5e78e8f42792484f31687eaaa5986 (patch)
treebae907718c228fbad248571de5fdc2927e14e838 /pkgs/tools
parentef23b150786820e8417b1e42c3eb9e5e4dd126a9 (diff)
parent2bff001654225bf5e9f96b66e06a111a71190f9f (diff)
downloadnixpkgs-2278dadbdfc5e78e8f42792484f31687eaaa5986.tar
nixpkgs-2278dadbdfc5e78e8f42792484f31687eaaa5986.tar.gz
nixpkgs-2278dadbdfc5e78e8f42792484f31687eaaa5986.tar.bz2
nixpkgs-2278dadbdfc5e78e8f42792484f31687eaaa5986.tar.lz
nixpkgs-2278dadbdfc5e78e8f42792484f31687eaaa5986.tar.xz
nixpkgs-2278dadbdfc5e78e8f42792484f31687eaaa5986.tar.zst
nixpkgs-2278dadbdfc5e78e8f42792484f31687eaaa5986.zip
Merge pull request #113523 from fabaff/stressapptest
stressapptest: init at 1.0.9
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/stressapptest/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/tools/system/stressapptest/default.nix b/pkgs/tools/system/stressapptest/default.nix
new file mode 100644
index 00000000000..9b7eb0a6f3e
--- /dev/null
+++ b/pkgs/tools/system/stressapptest/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, libaio
+}:
+
+stdenv.mkDerivation rec {
+  pname = "stressapptest";
+  version = "1.0.9";
+
+  src = fetchFromGitHub {
+    owner = pname;
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1qzj6h6adx042rb9aiz916jna269whibvj5ys4p5nwdp17fqh922";
+  };
+
+  buildInputs = [ libaio ];
+
+  meta = with lib; {
+    description = "Userspace memory and IO stress test tool";
+    homepage = "https://github.com/stressapptest/stressapptest";
+    license = with licenses; [ asl20 ];
+    maintainers = with lib.maintainers; [ fab ];
+    platforms = platforms.unix;
+  };
+}