2015-07-30 23:57:03 +02:00
|
|
|
{ stdenv, fetchurl, attr, keyutils }:
|
2015-01-14 10:02:05 +01:00
|
|
|
|
2015-09-08 02:21:19 +02:00
|
|
|
let
|
2015-11-19 23:25:28 +01:00
|
|
|
version = "0.05.00";
|
2015-01-14 10:02:05 +01:00
|
|
|
name = "stress-ng-${version}";
|
2015-09-08 02:21:19 +02:00
|
|
|
in stdenv.mkDerivation {
|
|
|
|
inherit name;
|
2015-01-14 10:02:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-11-19 23:25:28 +01:00
|
|
|
sha256 = "0ppri86z6fj48nm5l0x1r8mh7mwaf7bvhmi10jz6a8w7apnc181w";
|
2015-01-14 10:02:05 +01:00
|
|
|
url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz";
|
|
|
|
};
|
|
|
|
|
2015-07-30 23:57:03 +02:00
|
|
|
buildInputs = [ attr keyutils ];
|
2015-04-15 03:12:23 +02:00
|
|
|
|
2015-01-14 10:02:05 +01:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace Makefile --replace "/usr" ""
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-11-26 18:44:44 +01:00
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
2015-01-14 10:02:05 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-04-15 03:12:23 +02:00
|
|
|
inherit version;
|
2015-01-14 10:02:05 +01:00
|
|
|
description = "Stress test a computer system";
|
|
|
|
longDescription = ''
|
2015-02-26 21:25:53 +01:00
|
|
|
Stress test a system in various selectable ways, exercising both various
|
|
|
|
physical subsystems and various operating system kernel interfaces:
|
2015-01-14 10:02:05 +01:00
|
|
|
- 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-02 00:15:46 +01:00
|
|
|
homepage = http://kernel.ubuntu.com/~cking/stress-ng;
|
2015-05-05 02:46:20 +02:00
|
|
|
downloadPage = http://kernel.ubuntu.com/~cking/tarballs/stress-ng/;
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2015-09-08 02:21:19 +02:00
|
|
|
platforms = platforms.linux;
|
2015-01-14 10:02:05 +01:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
|
|
|
}
|