top-level/cuda-packages.nix: note Jetson is unsupported by redist for CUDA 12.3

Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
(cherry picked from commit 2714ae347a)
This commit is contained in:
Connor Baker
2025-08-04 07:25:20 +00:00
parent e7db916a8a
commit 3605d2cb0a

View File

@@ -173,7 +173,11 @@ let
(
final: _:
{
cuda_compat = runCommand "cuda_compat" { meta.platforms = [ ]; } "false"; # Prevent missing attribute errors
# Prevent missing attribute errors
# NOTE(@connorbaker): CUDA 12.3 does not have a cuda_compat package; indeed, none of the release supports
# Jetson devices. To avoid errors in the case that cuda_compat is not defined, we have a dummy package which
# is always defined, but does nothing, will not build successfully, and has no platforms.
cuda_compat = runCommand "cuda_compat" { meta.platforms = [ ]; } "false";
}
// lib.packagesFromDirectoryRecursive {
inherit (final) callPackage;