guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add cl-transducers.


From: guix-commits
Subject: branch master updated: gnu: Add cl-transducers.
Date: Wed, 01 Jan 2025 20:05:19 -0500

This is an automated email from the git hooks/post-receive script.

jgart pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new dff037f9aa gnu: Add cl-transducers.
dff037f9aa is described below

commit dff037f9aad74cf4457b552961cc66b0635dac4d
Author: Jake Shilling <shilling.jake@gmail.com>
AuthorDate: Mon Dec 30 16:55:04 2024 -0500

    gnu: Add cl-transducers.
    
    * gnu/packages/lisp-xyz.scm (cl-transducers, ecl-transducers,
    sbcl-transducers): Add new variables.
    
    Change-Id: Ia06d91c005b70528d5e5b37283e96edf040c2c69
    Co-authored-by: jgart <jgart@dismail.de>
    Signed-off-by: jgart <jgart@dismail.de>
---
 gnu/packages/lisp-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index c6cde75ea1..01306bef46 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -32837,3 +32837,40 @@ compression/decompression using bindings to the 
libzstd C library.")
 
 (define-public ecl-zstd
   (sbcl-package->ecl-package sbcl-zstd))
+
+(define-public sbcl-cl-transducers
+  (package
+    (name "sbcl-cl-transducers")
+    (version "1.3.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/fosskers/cl-transducers";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0p7fqkmv0rfi5d7mmm9600qpix003bqr7as148pk157s1d44vncg"))))
+    (build-system asdf-build-system/sbcl)
+    (arguments
+     '(#:asd-systems '("transducers" "transducers/jzon" "transducers/fset")))
+    (native-inputs
+     (list sbcl-cl-str
+           sbcl-parachute))
+    (inputs
+     (list sbcl-fset
+           sbcl-jzon
+           sbcl-trivia))
+    (home-page "https://fosskers.github.io/cl-transducers/";)
+    (synopsis "Data source processing for Common Lisp via transducers")
+    (description
+     "Transducers are an ergonomic and extremely memory-efficient way to
+process a data source.  Data source refers to simple collections like lists or
+vectors, but also potentially large files or generators of infinite data.")
+    (license license:mpl2.0)))
+
+(define-public cl-transducers
+  (sbcl-package->cl-source-package sbcl-cl-transducers))
+
+(define-public ecl-cl-transducers
+  (sbcl-package->ecl-package sbcl-cl-transducers))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]