summary refs log tree commit diff
path: root/pkgs/tools/system/stress-ng
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-02-02 00:15:46 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-02-02 00:15:46 +0100
commitb7a4231be7d7f9a8c21671bbd55e7d146c68bcbc (patch)
tree81f202c03afb3b1f9726a60694d170cb5d406fbc /pkgs/tools/system/stress-ng
parentf0f99d521238c2827e9ac76d39b2432d456f90aa (diff)
downloadnixlib-b7a4231be7d7f9a8c21671bbd55e7d146c68bcbc.tar
nixlib-b7a4231be7d7f9a8c21671bbd55e7d146c68bcbc.tar.gz
nixlib-b7a4231be7d7f9a8c21671bbd55e7d146c68bcbc.tar.bz2
nixlib-b7a4231be7d7f9a8c21671bbd55e7d146c68bcbc.tar.lz
nixlib-b7a4231be7d7f9a8c21671bbd55e7d146c68bcbc.tar.xz
nixlib-b7a4231be7d7f9a8c21671bbd55e7d146c68bcbc.tar.zst
nixlib-b7a4231be7d7f9a8c21671bbd55e7d146c68bcbc.zip
Update stress-ng 0.03.11 -> 0.03.13
Diffstat (limited to 'pkgs/tools/system/stress-ng')
-rw-r--r--pkgs/tools/system/stress-ng/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix
index 9b8db03b73e6..662ba8eab581 100644
--- a/pkgs/tools/system/stress-ng/default.nix
+++ b/pkgs/tools/system/stress-ng/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl }:
 
+let version = "0.03.13"; in
 stdenv.mkDerivation rec {
-  version = "0.03.11";
   name = "stress-ng-${version}";
 
   src = fetchurl {
     url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz";
-    sha256 = "01pshnqb75c0g4pwcz5i1gh2a6ijy3dlz8drb0i0p6n6l3fpgmar";
+    sha256 = "1ppf50rwq784qri62s2yvxif7gcrazhd6xin04yzavjdmwjayggz";
   };
 
   patchPhase = ''
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
       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/;
+    homepage = http://kernel.ubuntu.com/~cking/stress-ng;
     license = with licenses; gpl2Plus;
     platforms = with platforms; linux;
     maintainers = with maintainers; [ nckx ];