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-09-08 02:21:19 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-08 02:21:19 +0200
commit9aa595ef50764049b68ec1091e8d1c874af6c349 (patch)
tree630c7ab76d2b27d9149d2f88a20c3dd313c3b33f /pkgs/tools/system/stress-ng
parentb313fb09979cc78a34484218e5bd0c7c2a017cef (diff)
downloadnixlib-9aa595ef50764049b68ec1091e8d1c874af6c349.tar
nixlib-9aa595ef50764049b68ec1091e8d1c874af6c349.tar.gz
nixlib-9aa595ef50764049b68ec1091e8d1c874af6c349.tar.bz2
nixlib-9aa595ef50764049b68ec1091e8d1c874af6c349.tar.lz
nixlib-9aa595ef50764049b68ec1091e8d1c874af6c349.tar.xz
nixlib-9aa595ef50764049b68ec1091e8d1c874af6c349.tar.zst
nixlib-9aa595ef50764049b68ec1091e8d1c874af6c349.zip
stress-ng: 0.04.15 -> 0.04.16
Diffstat (limited to 'pkgs/tools/system/stress-ng')
-rw-r--r--pkgs/tools/system/stress-ng/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix
index 0f62fc4e360a..d0c4169a97af 100644
--- a/pkgs/tools/system/stress-ng/default.nix
+++ b/pkgs/tools/system/stress-ng/default.nix
@@ -1,11 +1,13 @@
 { stdenv, fetchurl, attr, keyutils }:
 
-let version = "0.04.15"; in
-stdenv.mkDerivation rec {
+let
+  version = "0.04.16";
   name = "stress-ng-${version}";
+in stdenv.mkDerivation {
+  inherit name;
 
   src = fetchurl {
-    sha256 = "1jazcfviqx3pyhv2jzsp6y37ndsj1smfk6jacpxg9vrg5k3cm3wq";
+    sha256 = "0v4zqjh07zc8s4dd1w9iri79dcjfbnv7668rbkmp3pgqzpxdy5wx";
     url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz";
   };
 
@@ -36,7 +38,7 @@ stdenv.mkDerivation rec {
     homepage = http://kernel.ubuntu.com/~cking/stress-ng;
     downloadPage = http://kernel.ubuntu.com/~cking/tarballs/stress-ng/;
     license = licenses.gpl2Plus;
-    platforms = with platforms; linux;
+    platforms = platforms.linux;
     maintainers = with maintainers; [ nckx ];
   };
 }