mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
pqos-wrapper: init at unstable-2022-01-31
Co-authored-by: h7x4 <h7x4@nani.wtf>
This commit is contained in:
parent
c250e8ee94
commit
3b2c8bc52e
28
pkgs/by-name/pq/pqos-wrapper/package.nix
Normal file
28
pkgs/by-name/pq/pqos-wrapper/package.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, intel-cmt-cat
|
||||
, fetchFromGitLab
|
||||
, python3
|
||||
}:
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "pqos-wrapper";
|
||||
version = "unstable-2022-01-31";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
group = "sosy-lab";
|
||||
owner = "software";
|
||||
repo = pname;
|
||||
rev = "ce816497a07dcb4b931652b98359e4601a292b15";
|
||||
hash = "sha256-SaYr6lVucpJjVtGgxRbDGYbOoBwdfEDVKtvD+M1L0o4=";
|
||||
};
|
||||
|
||||
makeWrapperArgs = [ "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ intel-cmt-cat ]}" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Wrapper for Intel PQoS for the purpose of using it in BenchExec";
|
||||
homepage = "https://gitlab.com/sosy-lab/software/pqos-wrapper";
|
||||
maintainers = with maintainers; [ lorenzleutgeb ];
|
||||
license = licenses.asl20;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
mainProgram = "pqos_wrapper";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user