From 4e27f202a1153371d698600a577d3df04156635b Mon Sep 17 00:00:00 2001 From: ruro Date: Mon, 3 Mar 2025 21:10:40 +0300 Subject: [PATCH] cudaPackages.tensorrt: set hydraPlatforms to none --- pkgs/development/cuda-modules/tensorrt/fixup.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/cuda-modules/tensorrt/fixup.nix b/pkgs/development/cuda-modules/tensorrt/fixup.nix index aab6d8f32079..ed249141c83e 100644 --- a/pkgs/development/cuda-modules/tensorrt/fixup.nix +++ b/pkgs/development/cuda-modules/tensorrt/fixup.nix @@ -109,5 +109,10 @@ finalAttrs: prevAttrs: { ++ lib.optionals (targetArch == "unsupported") [ hostPlatform.system ]; homepage = "https://developer.nvidia.com/tensorrt"; maintainers = prevAttrs.meta.maintainers ++ [ maintainers.aidalgol ]; + + # Building TensorRT on Hydra is impossible because of the non-redistributable + # license and because the source needs to be manually downloaded from the + # NVIDIA Developer Program (see requireFile above). + hydraPlatforms = lib.platforms.none; }; }