about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/rocm-modules/6/llvm/stage-3/pstl.nix
blob: dc7d7cd6ccbfa14915b44916490b7c518849046e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv
, callPackage
, rocmUpdateScript
}:

callPackage ../base.nix rec {
  inherit stdenv rocmUpdateScript;
  buildDocs = false; # No documentation to build
  buildMan = false; # No man pages to build
  buildTests = false; # Too many errors
  targetName = "pstl";
  targetDir = "runtimes";
  targetRuntimes = [ targetName ];
  checkTargets = [ "check-${targetName}" ];
}