about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/cuda-modules/tensorrt/shims.nix
blob: 8be3e7988bb348a7d4d8c98073bdaece38a1da61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Shims to mimic the shape of ../modules/generic/manifests/{feature,redistrib}/release.nix
{package, redistArch}:
{
  featureRelease.${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;
  };
}