2015-07-30 21:57:03 +00:00
|
|
|
{ stdenv, fetchurl, attr, keyutils }:
|
2015-01-14 09:02:05 +00:00
|
|
|
|
2016-01-25 19:08:34 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-01-14 09:02:05 +00:00
|
|
|
name = "stress-ng-${version}";
|
2016-08-25 02:38:18 +00:00
|
|
|
version = "0.06.14";
|
2015-01-14 09:02:05 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-08-25 02:38:18 +00:00
|
|
|
sha256 = "06kycxfwkdrm2vs9xk8cb6c1mki29ymrrqwwxxqx4icnwvq135hv";
|
2015-01-14 09:02:05 +00:00
|
|
|
url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz";
|
|
|
|
};
|
|
|
|
|
2015-07-30 21:57:03 +00:00
|
|
|
buildInputs = [ attr keyutils ];
|
2015-04-15 01:12:23 +00:00
|
|
|
|
2015-01-14 09:02:05 +00:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace Makefile --replace "/usr" ""
|
|
|
|
'';
|
|
|
|
|
2016-08-25 02:38:18 +00:00
|
|
|
# Won't build on i686 because the binary will be linked again in the
|
|
|
|
# install phase without checking the dependencies. This will prevent
|
|
|
|
# triggering the rebuild. Why this only happens on i686 remains a
|
|
|
|
# mystery, though. :-(
|
|
|
|
enableParallelBuilding = (!stdenv.isi686);
|
2015-01-14 09:02:05 +00:00
|
|
|
|
2015-11-26 17:44:44 +00:00
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
2015-01-14 09:02:05 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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:
|
2016-07-14 16:06:54 +00:00
|
|
|
- over 130 different stress tests
|
|
|
|
- over 70 CPU specific stress tests that exercise floating point,
|
2015-01-14 09:02:05 +00:00
|
|
|
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/;
|
2015-05-28 17:20:29 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2015-09-08 00:21:19 +00:00
|
|
|
platforms = platforms.linux;
|
2015-01-14 09:02:05 +00:00
|
|
|
};
|
|
|
|
}
|