nixpkgs/pkgs/tools/system/stress-ng/default.nix

43 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, attr, keyutils }:
2015-08-20 02:06:21 +00:00
let version = "0.04.15"; in
stdenv.mkDerivation rec {
name = "stress-ng-${version}";
src = fetchurl {
2015-08-20 02:06:21 +00:00
sha256 = "1jazcfviqx3pyhv2jzsp6y37ndsj1smfk6jacpxg9vrg5k3cm3wq";
url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz";
};
buildInputs = [ attr keyutils ];
2015-04-15 01:12:23 +00:00
patchPhase = ''
substituteInPlace Makefile --replace "/usr" ""
'';
enableParallelBuilding = true;
2015-06-01 00:14:59 +00:00
installFlags = "DESTDIR=$(out)";
meta = with stdenv.lib; {
2015-04-15 01:12:23 +00:00
inherit version;
description = "Stress test a computer system";
longDescription = ''
2015-02-26 20:25:53 +00:00
Stress test a system in various selectable ways, exercising both various
physical subsystems and various operating system kernel interfaces:
- over 60 different stress tests
- over 50 CPU specific stress tests that exercise floating point,
integer, bit manipulation and control flow
- over 20 virtual memory stress tests
stress-ng was originally intended to make a machine work hard and trip
hardware issues such as thermal overruns as well as operating system
bugs that only occur when a system is being thrashed hard.
'';
2015-02-01 23:15:46 +00:00
homepage = http://kernel.ubuntu.com/~cking/stress-ng;
2015-05-05 00:46:20 +00:00
downloadPage = http://kernel.ubuntu.com/~cking/tarballs/stress-ng/;
license = licenses.gpl2Plus;
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
}