all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jake Shilling <shilling.jake@gmail.com>
To: 75221@debbugs.gnu.org
Cc: Jake Shilling <shilling.jake@gmail.com>,
	Guillaume Le Vaillant <glv@posteo.net>,
	Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>,
	Munyoki Kilyungi <me@bonfacemunyoki.com>,
	Sharlatan Hellseher <sharlatanus@gmail.com>,
	jgart <jgart@dismail.de>
Subject: [bug#75221] [PATCH] gnu: Add cl-transducers
Date: Mon, 30 Dec 2024 16:55:04 -0500	[thread overview]
Message-ID: <a8a2fcef218547de4e14a4ee0ff1f9e5f32e82d3.1735595610.git.shilling.jake@gmail.com> (raw)

Change-Id: Ia06d91c005b70528d5e5b37283e96edf040c2c69
---
 gnu/packages/lisp-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index c6cde75ea1..0fc5043b4a 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -32837,3 +32837,38 @@ (define-public cl-zstd
 
 (define-public ecl-zstd
   (sbcl-package->ecl-package sbcl-zstd))
+
+(define-public sbcl-cl-transducers
+  (let ((commit "9b424bd7a2eec7ad4bc258501f28170c6f00eaf2")
+        (revision "0"))
+    (package
+      (name "sbcl-cl-transducers")
+      (version (git-version "1.3.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/fosskers/cl-transducers")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0p7fqkmv0rfi5d7mmm9600qpix003bqr7as148pk157s1d44vncg"))))
+      (build-system asdf-build-system/sbcl)
+      (arguments
+       '(#:asd-systems '("transducers" "transducers/jzon" "transducers/fset")))
+      (inputs (list sbcl-cl-str sbcl-parachute))
+      (propagated-inputs (list sbcl-fset sbcl-trivia sbcl-jzon))
+      (home-page "https://fosskers.github.io/cl-transducers/")
+      (synopsis "Transducers: Ergonomic, efficient data processing")
+      (description
+       "Transducers are an ergonomic and extremely
+memory-efficient way to process a data source.  Here \"data source\" means
+simple collections like Lists or Vectors, but also potentially large files or
+generators of infinite data.")
+      (license license:expat))))
+
+(define-public cl-transducers
+  (sbcl-package->cl-source-package sbcl-cl-transducers))
+
+(define-public ecl-cl-transducers
+  (sbcl-package->ecl-package sbcl-cl-transducers))

base-commit: 3ea95d7736be1f807d578d17c174b0976543b333
-- 
2.47.1





             reply	other threads:[~2024-12-31 11:42 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-30 21:55 Jake Shilling [this message]
2025-01-02  1:04 ` bug#75221: [PATCH] gnu: Add cl-transducers jgart via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a8a2fcef218547de4e14a4ee0ff1f9e5f32e82d3.1735595610.git.shilling.jake@gmail.com \
    --to=shilling.jake@gmail.com \
    --cc=75221@debbugs.gnu.org \
    --cc=cox.katherine.e+guix@gmail.com \
    --cc=glv@posteo.net \
    --cc=jgart@dismail.de \
    --cc=me@bonfacemunyoki.com \
    --cc=sharlatanus@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.