depot/third_party/nixpkgs/pkgs/tools/system/stress/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

16 lines
488 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "stress-1.0.4";
src = fetchurl {
url = "https://people.seas.harvard.edu/~apw/stress/${name}.tar.gz";
sha256 = "0nw210jajk38m3y7h8s130ps2qsbz7j75wab07hi2r3hlz14yzh5";
};
meta = with stdenv.lib; {
description = "Simple workload generator for POSIX systems. It imposes a configurable amount of CPU, memory, I/O, and disk stress on the system";
license = licenses.gpl2;
platforms = platforms.unix;
};
}