Merge pull request #113523 from fabaff/stressapptest

stressapptest: init at 1.0.9
This commit is contained in:
Sandro 2021-02-18 12:34:49 +01:00 committed by GitHub
commit 2278dadbdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View 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;
};
}

View File

@ -8165,6 +8165,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 { };