lisp-modules: move deprecated lisp attributes to aliases

+13 -32
+13
pkgs/top-level/aliases.nix
··· 181 181 clang-ocl = throw "'clang-ocl' has been replaced with 'rocmPackages.clang-ocl'"; # Added 2023-10-08 182 182 inherit (libsForQt5.mauiPackages) clip; # added 2022-05-17 183 183 clpm = throw "'clpm' has been removed from nixpkgs"; # Added 2024-04-01 184 + clwrapperFunction = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 184 185 collada-dom = opencollada; # added 2024-02-21 185 186 composable_kernel = throw "'composable_kernel' has been replaced with 'rocmPackages.composable_kernel'"; # Added 2023-10-08 186 187 cope = throw "'cope' has been removed, as it is broken in nixpkgs since it was added, and fixing it is not trivial"; # Added 2024-04-12 ··· 657 658 libxkbcommon_7 = throw "libxkbcommon_7 has been removed because it is impacted by security issues and not used in nixpkgs, move to 'libxkbcommon'"; # Added 2023-01-03 658 659 lightdm_gtk_greeter = lightdm-gtk-greeter; # Added 2022-08-01 659 660 lightstep-tracer-cpp = throw "lightstep-tracer-cpp is deprecated since 2022-08-29; the upstream recommends migration to opentelemetry projects."; 661 + lispPackages_new = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 662 + lispPackages = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 663 + lispPackagesFor = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 660 664 llama = walk; # Added 2023-01-23 661 665 662 666 # Linux kernels ··· 1062 1066 qtcurve = libsForQt5.qtcurve; # Added 2020-11-07 1063 1067 qtile-unwrapped = python3.pkgs.qtile; # Added 2023-05-12 1064 1068 quantum-espresso-mpi = quantum-espresso; # Added 2023-11-23 1069 + quicklispPackages = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 1070 + quicklispPackagesABCL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 1071 + quicklispPackagesCCL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 1072 + quicklispPackagesClisp = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 1073 + quicklispPackagesECL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 1074 + quicklispPackagesFor = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 1075 + quicklispPackagesGCL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 1076 + quicklispPackagesSBCL = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 1065 1077 qutebrowser-qt6 = throw "'qutebrowser-qt6' has been replaced by 'qutebrowser', since the the qt5 version has been removed"; # Added 2023-08-19 1066 1078 quvi = throw "'quvi' has been removed, as it was broken and unmaintained"; # Added 2023-11-25 1067 1079 ··· 1330 1342 wordpress6_1 = throw "'wordpress6_1' has been removed in favor of the latest version"; # Added 2023-10-10 1331 1343 wordpress6_2 = throw "'wordpress6_2' has been removed in favor of the latest version"; # Added 2023-10-10 1332 1344 wormhole-rs = magic-wormhole-rs; # Added 2022-05-30. preserve, reason: Arch package name, main binary name 1345 + wrapLisp_old = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07 1333 1346 wmii_hg = wmii; 1334 1347 wrapGAppsHook = wrapGAppsHook3; # Added 2024-03-26 1335 1348 wxGTK30 = throw "wxGTK30 has been removed from nixpkgs as it has reached end of life"; # Added 2023-03-22
-30
pkgs/top-level/all-packages.nix
··· 25313 25313 texLive = null; 25314 25314 }; 25315 25315 25316 - ## DEPRECATED, will be removed in a future release 25317 - 25318 - clwrapperFunction = callPackage ../development/lisp-modules-obsolete/clwrapper; 25319 - 25320 - wrapLisp_old = lisp: clwrapperFunction { inherit lisp; }; 25321 - 25322 - lispPackagesFor = clwrapper: callPackage ../development/lisp-modules-obsolete/lisp-packages.nix { 25323 - inherit clwrapper; 25324 - }; 25325 - 25326 - lispPackages = quicklispPackages // 25327 - (lispPackagesFor (wrapLisp_old sbcl)) // { __attrsFailEvaluation = true; }; 25328 - 25329 - quicklispPackagesFor = clwrapper: callPackage ../development/lisp-modules-obsolete/quicklisp-to-nix.nix { 25330 - inherit clwrapper; 25331 - } // { __attrsFailEvaluation = true; }; 25332 - quicklispPackagesClisp = dontRecurseIntoAttrs (quicklispPackagesFor (wrapLisp_old clisp)); 25333 - quicklispPackagesSBCL = dontRecurseIntoAttrs (quicklispPackagesFor (wrapLisp_old sbcl)); 25334 - quicklispPackagesECL = dontRecurseIntoAttrs (quicklispPackagesFor (wrapLisp_old ecl)); 25335 - quicklispPackagesCCL = dontRecurseIntoAttrs (quicklispPackagesFor (wrapLisp_old ccl)); 25336 - quicklispPackagesABCL = dontRecurseIntoAttrs (quicklispPackagesFor (wrapLisp_old abcl)); 25337 - quicklispPackagesGCL = dontRecurseIntoAttrs (quicklispPackagesFor (wrapLisp_old gcl)); 25338 - quicklispPackages = quicklispPackagesSBCL; 25339 - 25340 - # Alternative lisp-modules implementation 25341 - lispPackages_new = callPackage ../development/lisp-modules-new-obsolete/lisp-packages.nix {} 25342 - // { __attrsFailEvaluation = true; }; 25343 - 25344 - ## End of DEPRECATED 25345 - 25346 25316 wrapLisp = callPackage ../development/lisp-modules/nix-cl.nix {}; 25347 25317 25348 25318 # Armed Bear Common Lisp
-2
pkgs/top-level/packages-config.nix
··· 18 18 nodePackages 19 19 nodePackages_latest 20 20 platformioPackages 21 - quicklispPackagesClisp 22 - quicklispPackagesSBCL 23 21 rPackages 24 22 roundcubePlugins 25 23 sourceHanPackages