forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / by-name / pq / pqos-wrapper / package.nix
blobd0235fedc3a71677bf7ccf4a723736366622d722
1 { lib
2 , intel-cmt-cat
3 , fetchFromGitLab
4 , python3
5 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "pqos-wrapper";
8   version = "unstable-2022-01-31";
10   src = fetchFromGitLab {
11     group = "sosy-lab";
12     owner = "software";
13     repo = pname;
14     rev = "ce816497a07dcb4b931652b98359e4601a292b15";
15     hash = "sha256-SaYr6lVucpJjVtGgxRbDGYbOoBwdfEDVKtvD+M1L0o4=";
16   };
18   makeWrapperArgs = [ "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ intel-cmt-cat ]}" ];
20   meta = with lib; {
21     description = "Wrapper for Intel PQoS for the purpose of using it in BenchExec";
22     homepage = "https://gitlab.com/sosy-lab/software/pqos-wrapper";
23     maintainers = with maintainers; [ lorenzleutgeb ];
24     license = licenses.asl20;
25     platforms = [ "x86_64-linux" ];
26     mainProgram = "pqos_wrapper";
27   };