about summary refs log tree commit diff
path: root/pkgs/development/cuda-modules/aliases.nix
blob: 36dd07d773bd9aa8e7b57004296bbad883f2ffad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Packges which have been deprecated or removed from cudaPackages
final: prev:
let
  mkRenamed =
    oldName: newName: newPkg:
    final.lib.warn "cudaPackages.${oldName} is deprecated, use ${newName} instead" newPkg;
in
{

  # Deprecated: an alias kept for compatibility. Consider removing after 24.05
  autoFixElfFiles = mkRenamed "autoFixElfFiles" "pkgs.autoFixElfFiles" final.pkgs.autoFixElfFiles; # Added 2024-03-30
  autoAddDriverRunpath =
    mkRenamed "autoAddDriverRunpath" "pkgs.autoAddDriverRunpath"
      final.pkgs.autoAddDriverRunpath; # Added 2024-03-30
  autoAddOpenGLRunpathHook =
    mkRenamed "autoAddOpenGLRunpathHook" "pkgs.autoAddDriverRunpath"
      final.pkgs.autoAddDriverRunpath; # Added 2024-03-30
}