diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2022-06-28 20:14:16 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2022-07-15 20:17:36 +0200 |
commit | ad9adec6b464520180bf023358b655385030c397 (patch) | |
tree | 42b904ef22a44e4eb6ee7d5abd32d992fd7f63b6 | |
parent | 7de49a0e014e57e8725d9b773814250e34eaf108 (diff) |
gnu: Add chicken-srfi-13.
* gnu/packages/chicken.scm (chicken-srfi-13): New variable.
-rw-r--r-- | gnu/packages/chicken.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm index c4e0a9c693..b87b8118f1 100644 --- a/gnu/packages/chicken.scm +++ b/gnu/packages/chicken.scm @@ -109,6 +109,26 @@ useful list processing procedures for construction, examining, destructuring and manipulating lists and pairs.") (license license:bsd-3))) +(define-public chicken-srfi-13 + (package + (name "chicken-srfi-13") + (version "0.3.2") + (source (origin + (method url-fetch) + (uri (egg-uri "srfi-13" version)) + (sha256 + (base32 + "18clbmaampaxivwx9bya9fxnkzqbczhlz0kbs9bfapm77mxkwclc")))) + (build-system chicken-build-system) + (arguments '(#:egg-name "srfi-13")) + (native-inputs (list chicken-test)) + (propagated-inputs (list chicken-srfi-14)) + (home-page "https://wiki.call-cc.org/egg/srfi-13") + (synopsis "SRFI-13 string library for Chicken scheme") + (description "This package provides the SRFI-13 string library for Chicken +scheme.") + (license license:bsd-3))) + (define-public chicken-srfi-14 (package (name "chicken-srfi-14") |