nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 12 lines 328 B view raw
1# Packages which have been deprecated or removed from cudaPackages 2{ lib }: 3let 4 mkRenamed = 5 oldName: 6 { path, package }: 7 lib.warn "cudaPackages.${oldName} is deprecated, use ${path} instead" package; 8in 9final: _: 10builtins.mapAttrs mkRenamed { 11 # A comment to prevent empty { } from collapsing into a single line 12}