stress-ng: 0.09.57 -> 0.09.58 (#61429)
* stress-ng: 0.09.57 -> 0.09.58 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/stress-ng/versions * stress-ng: re-enable on Darwin + add meta.changelog page + update full description
This commit is contained in:
parent
83a01ab93a
commit
e5ad845ee8
@ -3,12 +3,12 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "stress-ng-${version}";
|
pname = "stress-ng";
|
||||||
version = "0.09.57";
|
version = "0.09.58";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.xz";
|
url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "0xp55m1kif8hcjdcdhgaarghqf1gz5fa24qwl6zpmxkzl6bn002x";
|
sha256 = "1rlll6wl0i0m21idfr3xr99pfgnb9wf9i35hsb0frmrpcvls06za";
|
||||||
};
|
};
|
||||||
|
|
||||||
# All platforms inputs then Linux-only ones
|
# All platforms inputs then Linux-only ones
|
||||||
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||||||
attr keyutils libaio libapparmor libcap lksctp-tools
|
attr keyutils libaio libapparmor libcap lksctp-tools
|
||||||
];
|
];
|
||||||
|
|
||||||
patchPhase = ''
|
postPatch = ''
|
||||||
substituteInPlace Makefile --replace "/usr" ""
|
substituteInPlace Makefile --replace "/usr" ""
|
||||||
'';
|
'';
|
||||||
|
|
||||||
@ -27,25 +27,39 @@ stdenv.mkDerivation rec {
|
|||||||
# mystery, though. :-(
|
# mystery, though. :-(
|
||||||
enableParallelBuilding = (!stdenv.isi686);
|
enableParallelBuilding = (!stdenv.isi686);
|
||||||
|
|
||||||
installFlags = [ "DESTDIR=$(out)" ];
|
installFlags = [ "DESTDIR=${placeholder "out"}" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Stress test a computer system";
|
description = "Stress test a computer system";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Stress test a system in various selectable ways, exercising both various
|
stress-ng will stress test a computer system in various selectable ways. It
|
||||||
physical subsystems and various operating system kernel interfaces:
|
was designed to exercise various physical subsystems of a computer as well as
|
||||||
- over 130 different stress tests
|
the various operating system kernel interfaces. Stress-ng features:
|
||||||
- over 70 CPU specific stress tests that exercise floating point,
|
|
||||||
integer, bit manipulation and control flow
|
* over 210 stress tests
|
||||||
- over 20 virtual memory stress tests
|
* over 50 CPU specific stress tests that exercise floating point, integer,
|
||||||
stress-ng was originally intended to make a machine work hard and trip
|
bit manipulation and control flow
|
||||||
hardware issues such as thermal overruns as well as operating system
|
* over 20 virtual memory stress tests
|
||||||
bugs that only occur when a system is being thrashed hard.
|
* portable: builds on Linux, Solaris, *BSD, Minix, Android, MacOS X,
|
||||||
|
Debian Hurd, Haiku, Windows Subsystem for Linux and SunOs/Dilos with
|
||||||
|
gcc, clang, tcc and pcc.
|
||||||
|
|
||||||
|
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. Use stress-ng with caution as some
|
||||||
|
of the tests can make a system run hot on poorly designed hardware and also can
|
||||||
|
cause excessive system thrashing which may be difficult to stop.
|
||||||
|
|
||||||
|
stress-ng can also measure test throughput rates; this can be useful to observe
|
||||||
|
performance changes across different operating system releases or types of
|
||||||
|
hardware. However, it has never been intended to be used as a precise benchmark
|
||||||
|
test suite, so do NOT use it in this manner.
|
||||||
'';
|
'';
|
||||||
homepage = https://kernel.ubuntu.com/~cking/stress-ng/;
|
homepage = "https://kernel.ubuntu.com/~cking/stress-ng/";
|
||||||
downloadPage = https://kernel.ubuntu.com/~cking/tarballs/stress-ng/;
|
downloadPage = "https://kernel.ubuntu.com/~cking/tarballs/stress-ng/";
|
||||||
|
changelog = "https://kernel.ubuntu.com/git/cking/stress-ng.git/plain/debian/changelog?h=V${version}";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; [ c0bw3b ];
|
maintainers = with maintainers; [ c0bw3b ];
|
||||||
platforms = platforms.linux; # TODO: fix https://github.com/NixOS/nixpkgs/pull/50506#issuecomment-439635963
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user