diff options
| author | Paul A. Patience <paul@apatience.com> | 2022-11-26 00:40:17 +0000 |
|---|---|---|
| committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-11-28 09:32:10 +0100 |
| commit | 1a4eb38bdd51e338e91825410836816695ba8dca (patch) | |
| tree | 0bf6330c0599e412f02d37eeaec971eec0d57433 | |
| parent | 6f4bfc5263ba0de5e3357b2fc210c3f451cf89c7 (diff) | |
gnu: Add cl-with-user-abort.
* gnu/packages/lisp-xyz.scm (sbcl-with-user-abort, cl-with-user-abort,
ecl-with-user-abort): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
| -rw-r--r-- | gnu/packages/lisp-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index ad2da5fa825..1e7e75debab 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm | |||
| @@ -18124,6 +18124,35 @@ long-running threads. In principle, it is like an in-Lisp process supervisor.") | |||
| 18124 | (define-public ecl-moira | 18124 | (define-public ecl-moira |
| 18125 | (sbcl-package->ecl-package sbcl-moira)) | 18125 | (sbcl-package->ecl-package sbcl-moira)) |
| 18126 | 18126 | ||
| 18127 | (define-public sbcl-with-user-abort | ||
| 18128 | (let ((commit "60693b4a1354faf17107ad6003b0b870cca37081") | ||
| 18129 | (revision "0")) | ||
| 18130 | (package | ||
| 18131 | (name "sbcl-with-user-abort") | ||
| 18132 | (version (git-version "0.1" revision commit)) | ||
| 18133 | (source | ||
| 18134 | (origin | ||
| 18135 | (method git-fetch) | ||
| 18136 | (uri (git-reference | ||
| 18137 | (url "https://github.com/compufox/with-user-abort") | ||
| 18138 | (commit commit))) | ||
| 18139 | (file-name (git-file-name "cl-with-user-abort" version)) | ||
| 18140 | (sha256 | ||
| 18141 | (base32 "0k1xxfvncdw4fx8nncis1ma128bqq05zky1mrzak5rjbivzjm8j1")))) | ||
| 18142 | (build-system asdf-build-system/sbcl) | ||
| 18143 | (home-page "https://github.com/compufox/with-user-abort") | ||
| 18144 | (synopsis "Portability library for catching SIGINT from Common Lisp") | ||
| 18145 | (description | ||
| 18146 | "@code{with-user-abort} is a Common Lisp portability library providing a | ||
| 18147 | like-named macro that catches the SIGINT signal.") | ||
| 18148 | (license license:bsd-3)))) | ||
| 18149 | |||
| 18150 | (define-public cl-with-user-abort | ||
| 18151 | (sbcl-package->cl-source-package sbcl-with-user-abort)) | ||
| 18152 | |||
| 18153 | (define-public ecl-with-user-abort | ||
| 18154 | (sbcl-package->ecl-package sbcl-with-user-abort)) | ||
| 18155 | |||
| 18127 | (define-public sbcl-cl-package-locks | 18156 | (define-public sbcl-cl-package-locks |
| 18128 | (let ((commit "96a358ede7cef416d61d2f699e724fe1d9de602c") | 18157 | (let ((commit "96a358ede7cef416d61d2f699e724fe1d9de602c") |
| 18129 | (revision "1")) | 18158 | (revision "1")) |
