diff options
author | Luke Gorrie <lukego@gmail.com> | 2021-10-20 16:30:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 14:30:31 +0000 |
commit | 4f9ca7c56556432c33adb77da765022ae1d4589c (patch) | |
tree | 221722324c57bee4bcd59c906ece8f8c66e4e29c /pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix | |
parent | 5b455776e301b85e1180f71b9237b37e00f7134f (diff) |
Common lisp update (#142209)
quicklisp: 2021-02-13 -> 2021-08-07 lispPackages: regenerate from fresher Quicklisp sbcl: 2.1.2 -> 2.1.9 (switch default version) lispPackages.mgl, lispPackages.mgl-mat: init lispPackages.iolib: suppress network-reliant tests lispPackages.esrap: apply upstream SBCL 2.1.9 compatibility patch Removed packages caveman and clack-v1-compat that are removed. Added more packages from Quicklisp. * lisp-modules/shell.nix: Add openblas for MGL * lisp-modules: Update README.txt Mention that shell.nix needs to be updated when adding packages that have external dependencies during package analysis, e.g. package :LLA that specifically wants to load libblas.so at compile-time. * lisp-modules/define-package.nix: Fix package path deduplication The deduplication of NIX_LISP_ASDF_PATHS was not working, apparently due to a shell quoting bug causing the sort/uniq pipeline to run at the wrong time. This is now deduplicated in a separate step. This fixes a series problem where environments with many Lisp packages would exhasut the available environment space on Linux, causing obscure "too many arguments" error messages from the shell, because the NIX_LISP_ASDF_PATHS list was bloated with ~90% duplicates. Co-authored-by: Luke Gorrie <luke@nuddy.co>
Diffstat (limited to 'pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix')
-rw-r--r-- | pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix index 427f63cb3dd64..eb81e9dba40db 100644 --- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix +++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix @@ -2,15 +2,15 @@ args @ { fetchurl, ... }: rec { baseName = "lack"; - version = "20201016-git"; + version = "20210807-git"; description = "A minimal Clack"; deps = [ args."alexandria" args."bordeaux-threads" args."ironclad" args."lack-component" args."lack-util" ]; src = fetchurl { - url = "http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz"; - sha256 = "124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan"; + url = "http://beta.quicklisp.org/archive/lack/2021-08-07/lack-20210807-git.tgz"; + sha256 = "0zyyr9wkncf03l4jf54mkjm4kaiswmwj5y198kp9v00x2ljjnkjn"; }; packageName = "lack"; @@ -19,9 +19,9 @@ rec { overrides = x: x; } /* (SYSTEM lack DESCRIPTION A minimal Clack SHA256 - 124c3k8116m5gc0rp4vvkqcvz35lglrbwdq4i929hbq65xyx5gan URL - http://beta.quicklisp.org/archive/lack/2020-10-16/lack-20201016-git.tgz MD5 - 8a056801bd99fdd70cdfaf33129f6aeb NAME lack FILENAME lack DEPS + 0zyyr9wkncf03l4jf54mkjm4kaiswmwj5y198kp9v00x2ljjnkjn URL + http://beta.quicklisp.org/archive/lack/2021-08-07/lack-20210807-git.tgz MD5 + 76b3ab979e6c3d7d33dd2fd3864692ca NAME lack FILENAME lack DEPS ((NAME alexandria FILENAME alexandria) (NAME bordeaux-threads FILENAME bordeaux-threads) (NAME ironclad FILENAME ironclad) @@ -29,7 +29,7 @@ rec { (NAME lack-util FILENAME lack-util)) DEPENDENCIES (alexandria bordeaux-threads ironclad lack-component lack-util) VERSION - 20201016-git SIBLINGS + 20210807-git SIBLINGS (lack-component lack-middleware-accesslog lack-middleware-auth-basic lack-middleware-backtrace lack-middleware-csrf lack-middleware-mount lack-middleware-session lack-middleware-static lack-request lack-response |