about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/stress
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/system/stress')
-rw-r--r--nixpkgs/pkgs/tools/system/stress/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/system/stress/default.nix b/nixpkgs/pkgs/tools/system/stress/default.nix
new file mode 100644
index 000000000000..ab765c820131
--- /dev/null
+++ b/nixpkgs/pkgs/tools/system/stress/default.nix
@@ -0,0 +1,21 @@
+{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
+
+stdenv.mkDerivation rec {
+  pname = "stress";
+  version = "1.0.7";
+
+  src = fetchFromGitHub {
+    owner = "resurrecting-open-source-projects";
+    repo = pname;
+    rev = version;
+    hash = "sha256-1r0n/KE4RpO0txIViGxuc7G+I4Ds9AJYcuMx2/R97jg=";
+  };
+
+  nativeBuildInputs = [ autoreconfHook ];
+
+  meta = with lib; {
+    description = "Simple workload generator for POSIX systems. It imposes a configurable amount of CPU, memory, I/O, and disk stress on the system";
+    license = licenses.gpl2;
+    platforms = platforms.unix;
+  };
+}