nixpkgs/pkgs/tools/system/stress-ng/default.nix
2016-07-15 00:06:54 +08:00

42 lines
1.4 KiB
Nix

{ stdenv, fetchurl, attr, keyutils }:
stdenv.mkDerivation rec {
name = "stress-ng-${version}";
version = "0.06.11";
src = fetchurl {
sha256 = "0481aji9hdq8qbslrrc87r2p2pn8jxf913ac8wm5kxj02yqf7ccv";
url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz";
};
buildInputs = [ attr keyutils ];
patchPhase = ''
substituteInPlace Makefile --replace "/usr" ""
'';
enableParallelBuilding = true;
installFlags = [ "DESTDIR=$(out)" ];
meta = with stdenv.lib; {
description = "Stress test a computer system";
longDescription = ''
Stress test a system in various selectable ways, exercising both various
physical subsystems and various operating system kernel interfaces:
- over 130 different stress tests
- over 70 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.
'';
homepage = http://kernel.ubuntu.com/~cking/stress-ng;
downloadPage = http://kernel.ubuntu.com/~cking/tarballs/stress-ng/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
}