guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 910b94e3dfc169006d054b3b2765ff30a71c40cc
Author: Malte Frank Gerdes <[email protected]>
AuthorDate: Fri Sep 11 14:25:02 2026 +0200

    gnu: chicken: Add chicken-fmt.
    
    * gnu/packages/chicken.scm (chicken-fmt): New variable.
    
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/chicken.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index 415991abba7..3e2e0199c82 100644
--- a/gnu/packages/chicken.scm
+++ b/gnu/packages/chicken.scm
@@ -457,6 +457,34 @@ While trying to improve the way records can be defined, 
this implementation
 is not hygienic.")
     (license license:bsd-3)))
 
+(define-public chicken-fmt
+  (package
+    (name "chicken-fmt")
+    (version "0.8.14")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (egg-uri "fmt" version))
+       (sha256
+        (base32 "1fbsg33hjkkf4kb98358brjaykcahq48jg359mbn2v6260azwj7p"))))
+    (build-system chicken-build-system)
+    (arguments
+     (list #:egg-name "fmt"))
+    (native-inputs
+     (list chicken-test))
+    (propagated-inputs
+     (list
+      chicken-srfi-1
+      chicken-srfi-13
+      chicken-srfi-69))
+    (home-page "https://wiki.call-cc.org/egg/fmt";)
+    (synopsis "Combinator formatting library")
+    (description "A library of procedures for formatting Scheme objects to
+text in various ways, and for easily concatenating, composing and extending
+these formatters efficiently without resorting to capturing and manipulating
+intermediate strings.")
+    (license license:bsd-3)))
+
 (define-public chicken-http-curl
   (package
     (name "chicken-http-curl")

Reply via email to