all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#75221] [PATCH] gnu: Add cl-transducers
@ 2024-12-30 21:55 Jake Shilling
  2025-01-02  1:04 ` bug#75221: " jgart via Guix-patches via
  0 siblings, 1 reply; 2+ messages in thread
From: Jake Shilling @ 2024-12-30 21:55 UTC (permalink / raw)
  To: 75221
  Cc: Jake Shilling, Guillaume Le Vaillant, Katherine Cox-Buday,
	Munyoki Kilyungi, Sharlatan Hellseher, jgart

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





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#75221: [PATCH] gnu: Add cl-transducers
  2024-12-30 21:55 [bug#75221] [PATCH] gnu: Add cl-transducers Jake Shilling
@ 2025-01-02  1:04 ` jgart via Guix-patches via
  0 siblings, 0 replies; 2+ messages in thread
From: jgart via Guix-patches via @ 2025-01-02  1:04 UTC (permalink / raw)
  To: 75221-done; +Cc: Jake Shilling


Thanks for the contribution.

Please see the pushed commit for commit style and other edits I made.
-- 
all the best,
jgart




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-01-02  1:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-30 21:55 [bug#75221] [PATCH] gnu: Add cl-transducers Jake Shilling
2025-01-02  1:04 ` bug#75221: " jgart via Guix-patches via

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.