2018-11-17 16:21:00 +01:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, attr, keyutils, libaio, libapparmor, libbsd, libcap, libgcrypt, lksctp-tools, zlib
|
|
|
|
}:
|
2015-01-14 10:02:05 +01:00
|
|
|
|
2016-01-25 20:08:34 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-01-14 10:02:05 +01:00
|
|
|
name = "stress-ng-${version}";
|
2018-11-17 16:21:00 +01:00
|
|
|
version = "0.09.46";
|
2015-01-14 10:02:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-11-17 16:21:00 +01:00
|
|
|
url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.xz";
|
|
|
|
sha256 = "0m1f46vqixx2mgqdrjwkl8w9did7n99sy96rbcgkkn9g99y59qjm";
|
2015-01-14 10:02:05 +01:00
|
|
|
};
|
|
|
|
|
2018-11-17 16:21:00 +01:00
|
|
|
# All platforms inputs then Linux-only ones
|
|
|
|
buildInputs = [ libbsd libgcrypt zlib ]
|
|
|
|
++ stdenv.lib.optionals stdenv.hostPlatform.isLinux [
|
|
|
|
attr keyutils libaio libapparmor libcap lksctp-tools
|
|
|
|
];
|
2015-04-15 03:12:23 +02:00
|
|
|
|
2015-01-14 10:02:05 +01:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace Makefile --replace "/usr" ""
|
|
|
|
'';
|
|
|
|
|
2016-08-25 04:38:18 +02: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 10:02:05 +01:00
|
|
|
|
2015-11-26 18:44:44 +01:00
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
2015-01-14 10:02:05 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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:
|
2016-07-14 18:06:54 +02:00
|
|
|
- over 130 different stress tests
|
|
|
|
- over 70 CPU specific stress tests that exercise floating point,
|
2015-01-14 10:02:05 +01: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.
|
|
|
|
'';
|
2018-11-17 16:21:00 +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;
|
2018-11-17 16:21:00 +01:00
|
|
|
maintainers = with maintainers; [ c0bw3b ];
|
|
|
|
platforms = platforms.linux; # TODO: fix https://github.com/NixOS/nixpkgs/pull/50506#issuecomment-439635963
|
2015-01-14 10:02:05 +01:00
|
|
|
};
|
|
|
|
}
|