Merge pull request #224824 from Uthar/lisp-recurse-into-attrs
lispPackages: dont recurse into attrs
This commit is contained in:
commit
27e517373d
1 changed files with 3 additions and 3 deletions
|
@ -24451,8 +24451,8 @@ with pkgs;
|
|||
inherit clwrapper;
|
||||
};
|
||||
|
||||
lispPackages = recurseIntoAttrs (quicklispPackages //
|
||||
(lispPackagesFor (wrapLisp_old sbcl)));
|
||||
lispPackages = quicklispPackages //
|
||||
(lispPackagesFor (wrapLisp_old sbcl));
|
||||
|
||||
quicklispPackagesFor = clwrapper: callPackage ../development/lisp-modules-obsolete/quicklisp-to-nix.nix {
|
||||
inherit clwrapper;
|
||||
|
@ -24466,7 +24466,7 @@ with pkgs;
|
|||
quicklispPackages = quicklispPackagesSBCL;
|
||||
|
||||
# Alternative lisp-modules implementation
|
||||
lispPackages_new = recurseIntoAttrs (callPackage ../development/lisp-modules-new-obsolete/lisp-packages.nix {});
|
||||
lispPackages_new = callPackage ../development/lisp-modules-new-obsolete/lisp-packages.nix {};
|
||||
|
||||
## End of DEPRECATED
|
||||
|
||||
|
|
Loading…
Reference in a new issue