* [bug#58725] [PATCH] gnu: Add cl-select.
@ 2022-10-22 22:21 jgart via Guix-patches via
2022-10-24 12:16 ` bug#58725: " Guillaume Le Vaillant
0 siblings, 1 reply; 2+ messages in thread
From: jgart via Guix-patches via @ 2022-10-22 22:21 UTC (permalink / raw)
To: 58725; +Cc: jgart
* gnu/packages/lisp-xyz.scm (cl-select, ecl-select, sbcl-select): New variables.
---
gnu/packages/lisp-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index dc4b7b197a..224926e3ca 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -835,6 +835,40 @@ (define-public sbcl-cl-abnf
grammar.")
(license license:expat))))
+(define-public sbcl-select
+ (let ((commit "df7920fc451b6d15345040ce4a3ee1ea2818ab1a")
+ (revision "0"))
+ (package
+ (name "sbcl-select")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Lisp-Stat/select")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0bhpvfqp7n33pia4y62qi31bx86gjl2nxjy529rfawac57c9rxv3"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ (list sbcl-alexandria
+ sbcl-anaphora
+ sbcl-let-plus))
+ (native-inputs
+ (list sbcl-fiveam))
+ (home-page "https://lisp-stat.github.io/select/")
+ (synopsis "Library for taking slices from array-like objects")
+ (description
+"A library for selecting portions of sequences, arrays or data-frames.")
+ (license license:ms-pl))))
+
+(define-public cl-select
+ (sbcl-package->cl-source-package sbcl-select))
+
+(define-public ecl-select
+ (sbcl-package->ecl-package sbcl-select))
+
(define-public cl-abnf
(sbcl-package->cl-source-package sbcl-cl-abnf))
--
2.38.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#58725: [PATCH] gnu: Add cl-select.
2022-10-22 22:21 [bug#58725] [PATCH] gnu: Add cl-select jgart via Guix-patches via
@ 2022-10-24 12:16 ` Guillaume Le Vaillant
0 siblings, 0 replies; 2+ messages in thread
From: Guillaume Le Vaillant @ 2022-10-24 12:16 UTC (permalink / raw)
To: jgart; +Cc: 58725-done
[-- Attachment #1: Type: text/plain, Size: 66 bytes --]
Patch pushed as 343b745b0d64e63f26133c6de56fc5d913a0ce14.
Thanks.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-10-24 12:36 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-22 22:21 [bug#58725] [PATCH] gnu: Add cl-select jgart via Guix-patches via
2022-10-24 12:16 ` bug#58725: " Guillaume Le Vaillant
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.