From 9aa595ef50764049b68ec1091e8d1c874af6c349 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 8 Sep 2015 02:21:19 +0200 Subject: [PATCH] stress-ng: 0.04.15 -> 0.04.16 --- pkgs/tools/system/stress-ng/default.nix | 10 ++++++---- 1 file 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 ]; }; }