about summary refs log tree commit diff
path: root/pkgs/development/cuda-modules
diff options
context:
space:
mode:
authorSomeone Serge <sergei.kozlukov@aalto.fi>2024-01-21 12:31:17 +0000
committerSomeone Serge <sergei.kozlukov@aalto.fi>2024-01-21 12:33:18 +0000
commit1d24d54ef4582e3645108f88ae23b3fb4c3b2f62 (patch)
tree688644a1598db7db2bc1b93deaecbf00b7613379 /pkgs/development/cuda-modules
parentd33fc5d7ee9a63cfffad7545765d3d93dca5b1d7 (diff)
cudaPackages.backendStdenv: fix eval error blocking the channel
...post https://github.com/NixOS/nixpkgs/pull/282220
Diffstat (limited to 'pkgs/development/cuda-modules')
-rw-r--r--pkgs/development/cuda-modules/backend-stdenv.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/cuda-modules/backend-stdenv.nix b/pkgs/development/cuda-modules/backend-stdenv.nix
index 72685b541d159..bcca7118b163b 100644
--- a/pkgs/development/cuda-modules/backend-stdenv.nix
+++ b/pkgs/development/cuda-modules/backend-stdenv.nix
@@ -13,8 +13,10 @@ let
   gccMajorVersion = nvccCompatibilities.${cudaVersion}.gccMaxMajorVersion;
   cudaStdenv = stdenvAdapters.useLibsFrom stdenv pkgs."gcc${gccMajorVersion}Stdenv";
   passthruExtra = {
-    nixpkgsCompatibleLibstdcxx = lib.warn "cudaPackages.backendStdenv.nixpkgsCompatibleLibstdcxx is misnamed, deprecated, and will be removed after 24.05" cudaStdenv.cc.cxxStdlib.package;
-    # cc already exposed
+    # cudaPackages.backendStdenv.nixpkgsCompatibleLibstdcxx has been removed,
+    # if you need it you're likely doing something wrong. There has been a
+    # warning here for a month or so. Now we can no longer return any
+    # meaningful value in its place and drop the attribute entirely.
   };
   assertCondition = true;
 in