mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
63 lines
1.6 KiB
Nix
63 lines
1.6 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
, libseccomp
|
|
, nixosTests
|
|
, testers
|
|
, benchexec
|
|
}:
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "benchexec";
|
|
version = "3.21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sosy-lab";
|
|
repo = "benchexec";
|
|
rev = version;
|
|
hash = "sha256-bE3brmmLHZQakDKvd47I1hm9Dcsu6DrSeJyjWWtEZWI=";
|
|
};
|
|
|
|
pyproject = true;
|
|
|
|
nativeBuildInputs = with python3.pkgs; [ setuptools ];
|
|
|
|
# NOTE: CPU Energy Meter is not added,
|
|
# because BenchExec should call the wrapper configured
|
|
# via `security.wrappers.cpu-energy-meter`
|
|
# in `programs.cpu-energy-meter`, which will have the required
|
|
# capabilities to access MSR.
|
|
# If we add `cpu-energy-meter` here, BenchExec will instead call an executable
|
|
# without `CAP_SYS_RAWIO` and fail.
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
coloredlogs
|
|
lxml
|
|
pystemd
|
|
pyyaml
|
|
];
|
|
|
|
makeWrapperArgs = [ "--set-default LIBSECCOMP ${lib.getLib libseccomp}/lib/libseccomp.so" ];
|
|
|
|
passthru.tests =
|
|
let
|
|
testVersion = result: testers.testVersion {
|
|
command = "${result} --version";
|
|
package = benchexec;
|
|
};
|
|
in
|
|
{
|
|
nixos = nixosTests.benchexec;
|
|
benchexec-version = testVersion "benchexec";
|
|
runexec-version = testVersion "runexec";
|
|
table-generator-version = testVersion "table-generator";
|
|
containerexec-version = testVersion "containerexec";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Framework for Reliable Benchmarking and Resource Measurement";
|
|
homepage = "https://github.com/sosy-lab/benchexec";
|
|
maintainers = with maintainers; [ lorenzleutgeb ];
|
|
license = licenses.asl20;
|
|
mainProgram = "benchexec";
|
|
};
|
|
}
|