about summary refs log tree commit diff
path: root/pkgs/development/cuda-modules/cudnn/shims.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/cuda-modules/cudnn/shims.nix')
-rw-r--r--pkgs/development/cuda-modules/cudnn/shims.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/development/cuda-modules/cudnn/shims.nix b/pkgs/development/cuda-modules/cudnn/shims.nix
new file mode 100644
index 0000000000000..e9eca8ef7c8b9
--- /dev/null
+++ b/pkgs/development/cuda-modules/cudnn/shims.nix
@@ -0,0 +1,13 @@
+# Shims to mimic the shape of ../modules/generic/manifests/{feature,redistrib}/release.nix
+{package, redistArch}:
+{
+  featureRelease.${redistArch}.outputs = {
+    lib = true;
+    static = true;
+    dev = true;
+  };
+  redistribRelease = {
+    name = "NVIDIA CUDA Deep Neural Network library (cuDNN)";
+    inherit (package) version;
+  };
+}