From a25e038111a19dea6f367c4d5ab0f1d4e58b7e06 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 21 Jun 2023 15:08:31 +0200 Subject: [PATCH] stress: 1.0.4 -> 1.0.7 --- pkgs/tools/system/stress/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/system/stress/default.nix b/pkgs/tools/system/stress/default.nix index 10aa285085f7..ab765c820131 100644 --- a/pkgs/tools/system/stress/default.nix +++ b/pkgs/tools/system/stress/default.nix @@ -1,14 +1,18 @@ -{ lib, stdenv, fetchurl }: +{ lib, stdenv, fetchFromGitHub, autoreconfHook }: stdenv.mkDerivation rec { pname = "stress"; - version = "1.0.4"; + version = "1.0.7"; - src = fetchurl { - url = "https://people.seas.harvard.edu/~apw/stress/stress-${version}.tar.gz"; - sha256 = "0nw210jajk38m3y7h8s130ps2qsbz7j75wab07hi2r3hlz14yzh5"; + src = fetchFromGitHub { + owner = "resurrecting-open-source-projects"; + repo = pname; + rev = version; + hash = "sha256-1r0n/KE4RpO0txIViGxuc7G+I4Ds9AJYcuMx2/R97jg="; }; + nativeBuildInputs = [ autoreconfHook ]; + meta = with lib; { description = "Simple workload generator for POSIX systems. It imposes a configurable amount of CPU, memory, I/O, and disk stress on the system"; license = licenses.gpl2;