summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-05 02:46:20 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-05 19:44:46 +0200
commit7a9484863822632a194b672751316372579bd8c0 (patch)
tree93053ac20569eea1e510e12119739500d32493ac /pkgs/tools/system
parent288291e13233057711da0331cd75a0024517ac12 (diff)
downloadnixlib-7a9484863822632a194b672751316372579bd8c0.tar
nixlib-7a9484863822632a194b672751316372579bd8c0.tar.gz
nixlib-7a9484863822632a194b672751316372579bd8c0.tar.bz2
nixlib-7a9484863822632a194b672751316372579bd8c0.tar.lz
nixlib-7a9484863822632a194b672751316372579bd8c0.tar.xz
nixlib-7a9484863822632a194b672751316372579bd8c0.tar.zst
nixlib-7a9484863822632a194b672751316372579bd8c0.zip
stress-ng 0.04.00 -> 0.04.01
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/stress-ng/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix
index f67921c6b712..a769cb77eca3 100644
--- a/pkgs/tools/system/stress-ng/default.nix
+++ b/pkgs/tools/system/stress-ng/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, attr }:
 
-let version = "0.04.00"; in
+let version = "0.04.01"; in
 stdenv.mkDerivation rec {
   name = "stress-ng-${version}";
 
   src = fetchurl {
-    sha256 = "1rivmqa3qy9saxcz7mg211imcfyfwdhyhl2z6k1zc55vhnjdwhih";
+    sha256 = "1n7980lx32jvk9z9gl5621vas83x2jvyvp3l2jzw3afh09vd5axk";
     url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz";
   };
 
@@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
       bugs that only occur when a system is being thrashed hard.
     '';
     homepage = http://kernel.ubuntu.com/~cking/stress-ng;
+    downloadPage = http://kernel.ubuntu.com/~cking/tarballs/stress-ng/;
     license = with licenses; gpl2Plus;
     platforms = with platforms; linux;
     maintainers = with maintainers; [ nckx ];