guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 4eefd7e6bc26d0f395c57e175b9e4276f57e4f34
Author: Malte Frank Gerdes <[email protected]>
AuthorDate: Fri Sep 11 13:51:48 2026 +0200
gnu: chicken: Add chicken-blob.
* gnu/packages/chicken.scm (chicken-blob): New variable.
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/chicken.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index d1e5c3a8723..62d924ce20b 100644
--- a/gnu/packages/chicken.scm
+++ b/gnu/packages/chicken.scm
@@ -245,6 +245,25 @@ result in a cache in the user's $HOME directory.")
RFC4648.")
(license license:expat)))
+(define-public chicken-blob
+ (package
+ (name "chicken-blob")
+ (version "0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (egg-uri "chicken-blob" version))
+ (sha256
+ (base32 "0ng6zz7y8xz0w0gplsrd2rlrrjbcd5jgvj7jidr66c5pqwnq2ih2"))))
+ (build-system chicken-build-system)
+ (arguments
+ (list #:egg-name "chicken-blob"))
+ (home-page "https://wiki.call-cc.org/man/5/Module%20%28chicken%20blob%29")
+ (synopsis "Replacement for CHICKEN 5's 'blob' module")
+ (description "This module provides a shim around the bytevector procedures
+to let old code work after blobs have been renamed to bytevectors in CHICKEN
6.")
+ (license license:expat)))
+
(define-public chicken-bytevector-utils
(package
(name "chicken-bytevector-utils")