about summary refs log tree commit diff
path: root/pkgs/development/cuda-modules/cudnn/shims.nix
blob: a36ee26dab5dcc6952d4ae7163b1b1531d8075bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 = {
      lib = true;
      static = true;
      dev = true;
    };
  };
  redistribRelease = {
    name = "NVIDIA CUDA Deep Neural Network library (cuDNN)";
    inherit (package) version;
  };
}