guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: Add cl-in-memory-streams.


From: guix-commits
Subject: 03/03: gnu: Add cl-in-memory-streams.
Date: Tue, 21 May 2024 09:20:18 -0400 (EDT)

glv pushed a commit to branch master
in repository guix.

commit 3fd9f25bb385723c70d0bd6af21aeaf784d08049
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Tue May 21 15:15:03 2024 +0200

    gnu: Add cl-in-memory-streams.
    
    * gnu/packages/lisp-xyz.scm (cl-in-memory-streams, ecl-in-memory-streams,
      sbcl-in-memory-streams): New variables.
    
    Change-Id: I5f55f1185dfc396d7287b1a402541ad68f355b56
---
 gnu/packages/lisp-xyz.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index fb61da72e6..5ee42d03f9 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -10031,6 +10031,39 @@ cl-plumbing libraries.")
 (define-public ecl-cl-octet-streams
   (sbcl-package->ecl-package sbcl-cl-octet-streams))
 
+(define-public sbcl-in-memory-streams
+  (let ((commit "bb4ce9c8c08479c9904f5d29f2b6187f264dc620")
+        (revision "1"))
+    (package
+      (name "sbcl-in-memory-streams")
+      (version (git-version "1.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://codeberg.org/glv/cl-in-memory-streams";)
+               (commit commit)))
+         (file-name (git-file-name "cl-in-memory-streams" version))
+         (sha256
+          (base32 "1fls1jnkf86wimip6f95y496sc4rxpsh2y65lgqsqpi0yda5xl2f"))))
+      (build-system asdf-build-system/sbcl)
+      (native-inputs
+       (list sbcl-fiveam))
+      (inputs
+       (list sbcl-trivial-gray-streams))
+      (synopsis "In-memory streams for any element type")
+      (description
+       "This Common Lisp library provides an implementation of in-memory input
+streams, output streams and io streams for any type of elements.")
+      (home-page "https://codeberg.org/glv/cl-in-memory-streams";)
+      (license license:gpl3+))))
+
+(define-public cl-in-memory-streams
+  (sbcl-package->cl-source-package sbcl-in-memory-streams))
+
+(define-public ecl-in-memory-streams
+  (sbcl-package->ecl-package sbcl-in-memory-streams))
+
 (define-public sbcl-lzlib
   (let ((commit "22767ca12d1c1bd59a7ae1f9c5ef7d2e937206bb")
         (revision "2"))



reply via email to

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