depot/third_party/nixpkgs/pkgs/tools/system/stress/default.nix
Default email a3bb8d7922 Project import generated by Copybara.
GitOrigin-RevId: 439b1605227b8adb1357b55ce8529d541abbe9eb
2021-08-06 00:33:18 +03:00

17 lines
511 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "stress";
version = "1.0.4";
src = fetchurl {
url = "https://people.seas.harvard.edu/~apw/stress/stress-${version}.tar.gz";
sha256 = "0nw210jajk38m3y7h8s130ps2qsbz7j75wab07hi2r3hlz14yzh5";
};
meta = with 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;
};
}