about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/cuda-modules/tensorrt/shims.nix
blob: 12465434ec85c6e95c4083957ccacd5e63c8d49c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Shims to mimic the shape of ../modules/generic/manifests/{feature,redistrib}/release.nix
{
  lib,
  package,
  # redistArch :: String
  # String is `"unsupported"` if the given architecture is unsupported.
  redistArch,
}:
{
  featureRelease = lib.optionalAttrs (redistArch != "unsupported") {
    ${redistArch}.outputs = {
      bin = true;
      lib = true;
      static = true;
      dev = true;
      sample = true;
      python = true;
    };
  };
  redistribRelease = {
    name = "TensorRT: a high-performance deep learning interface";
    inherit (package) version;
  };
}