summary refs log tree commit diff
diff options
context:
space:
mode:
authorcillianderoiste <cillian.deroiste@gmail.com>2015-01-14 11:51:51 +0100
committercillianderoiste <cillian.deroiste@gmail.com>2015-01-14 11:51:51 +0100
commit50640b18faa427890835fa3595317546c376243d (patch)
tree4e5133672fc58faf9b06797b75bf2075805a1716
parentd246fb66963274b90ccc8535499407e5256c17d4 (diff)
parentd885a5003a46f43415b23a1384268ddf6f2f594b (diff)
Merge pull request #5763 from nckx/stress-ng
Add stress-ng 0.03.09: stress test a computer system
-rw-r--r--pkgs/tools/system/stress-ng/default.nix39
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix
new file mode 100644
index 0000000000000..73dda1b551665
--- /dev/null
+++ b/pkgs/tools/system/stress-ng/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  version = "0.03.09";
+  name = "stress-ng-${version}";
+
+  src = fetchurl {
+    url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz";
+    sha256 = "0lpm04yn7jkfbmdhv73vnnskj492cwvcddh962pgz1mb5rzdkskj";
+  };
+
+  patchPhase = ''
+    substituteInPlace Makefile --replace "/usr" ""
+  '';
+
+  enableParallelBuilding = true;
+
+  makeFlags = "DESTDIR=$(out)";
+
+  meta = with stdenv.lib; {
+    description = "Stress test a computer system";
+    longDescription = ''
+      Stress test a computer system in various selectable ways, by exercising
+      various physical subsystems of a computer as well as the various
+      operating system kernel interfaces. Stress-ng features:
+      - over 60 different stress tests
+      - over 50 CPU specific stress tests that exercise floating point,
+        integer, bit manipulation and control flow
+      - over 20 virtual memory stress tests
+      stress-ng was originally intended to make a machine work hard and trip
+      hardware issues such as thermal overruns as well as operating system
+      bugs that only occur when a system is being thrashed hard.
+    '';
+    homepage = http://kernel.ubuntu.com/~cking/stress-ng/;
+    license = with licenses; gpl2Plus;
+    platforms = with platforms; linux;
+    maintainers = with maintainers; [ nckx ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 59e427940891d..1fdb1a0f4f726 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -2522,6 +2522,8 @@ let
 
   stress = callPackage ../tools/system/stress { };
 
+  stress-ng = callPackage ../tools/system/stress-ng { };
+
   storeBackup = callPackage ../tools/backup/store-backup { };
 
   stow = callPackage ../tools/misc/stow { };