diff options
author | jgart <jgart@dismail.de> | 2022-10-23 09:00:16 -0500 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-10-24 14:04:30 +0200 |
commit | de50d00ca835ef7fc0e38b91c8ace114a74fcfa3 (patch) | |
tree | 8296b032b7aa832ed50dbcec113b30d1993c847e | |
parent | 8d4f598ba6821fc6a50759f6c0bdbb224181f01e (diff) | |
download | guix-de50d00ca835ef7fc0e38b91c8ace114a74fcfa3.tar.gz guix-de50d00ca835ef7fc0e38b91c8ace114a74fcfa3.zip |
gnu: Add cl-stdutils.
* gnu/packages/lisp-xyz.scm (cl-stdutils, ecl-stdutils, sbcl-stdutils): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 5ede149607..63740c0eb7 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -186,6 +186,39 @@ portable between implementations.") (define-public ecl-alexandria (sbcl-package->ecl-package sbcl-alexandria)) +(define-public sbcl-stdutils + (let ((commit "4a4e5a4036b815318282da5dee2a22825369137b") + (revision "0")) + (package + (name "sbcl-stdutils") + (version (git-version "1.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/eslick/cl-stdutils") + (commit commit))) + (file-name (git-file-name "cl-stdutils" version)) + (sha256 + (base32 "16vxxphqdq8264x0aanm36x9r6d3ci1gjf4vf46mwl59gcff4wcj")))) + (build-system asdf-build-system/sbcl) + (arguments '(#:tests? #f)) ; There are no tests. + (inputs + (list sbcl-cl-fad + sbcl-cl-ppcre)) + (home-page "https://github.com/eslick/cl-stdutils/") + (synopsis "Grab bag of Common Lisp utility functions") + (description + "This package provides a grab bag of miscellaneous Common Lisp +utilities.") + (license license:bsd-3)))) + +(define-public cl-stdutils + (sbcl-package->cl-source-package sbcl-stdutils)) + +(define-public ecl-stdutils + (sbcl-package->ecl-package sbcl-stdutils)) + (define-public sbcl-alea (package (name "sbcl-alea") |