stressapptest: init at 1.0.9
This commit is contained in:
parent
2489d95c1c
commit
2bff001654
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/system/stressapptest/default.nix
Normal file
27
pkgs/tools/system/stressapptest/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, libaio
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "stressapptest";
|
||||
version = "1.0.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1qzj6h6adx042rb9aiz916jna269whibvj5ys4p5nwdp17fqh922";
|
||||
};
|
||||
|
||||
buildInputs = [ libaio ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Userspace memory and IO stress test tool";
|
||||
homepage = "https://github.com/stressapptest/stressapptest";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -8134,6 +8134,8 @@ in
|
|||
|
||||
stress-ng = callPackage ../tools/system/stress-ng { };
|
||||
|
||||
stressapptest = callPackage ../tools/system/stressapptest { };
|
||||
|
||||
stoken = callPackage ../tools/security/stoken (config.stoken or {});
|
||||
|
||||
storeBackup = callPackage ../tools/backup/store-backup { };
|
||||
|
|
Loading…
Reference in a new issue