diff options
author | raingloom <raingloom@riseup.net> | 2020-10-13 09:51:02 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-12-03 16:18:44 +0100 |
commit | f0f133d14fdcd6def27bfc53021ea64c5617c72c (patch) | |
tree | 419e41571e68e3fb57ae3e65c00de50b3f47f301 /gnu | |
parent | 7dd7bab48a172a2ebf30b725a3da1e1268a388b9 (diff) |
gnu: Add chicken-srfi-1.
* gnu/packages/chicken.scm (chicken-srfi-1): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/chicken.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm index 442dff78e9..2649c8d0da 100644 --- a/gnu/packages/chicken.scm +++ b/gnu/packages/chicken.scm @@ -77,6 +77,38 @@ produces portable and efficient C, supports almost all of the R5RS Scheme language standard, and includes many enhancements and extensions.") (license license:bsd-3))) +(define-public chicken-srfi-1 + (package + (name "chicken-srfi-1") + (version "0.5.1") + (source + (origin + (method svn-fetch) + (uri (svn-reference + (url (string-append + "https://code.call-cc.org/svn/chicken-eggs/" + "release/5/srfi-1/tags/" + version)) + (revision 39055) + (user-name "anonymous") + (password ""))) + (file-name (string-append "chicken-srfi-1" version "-checkout")) + (sha256 + (base32 + "02940zsjrmn7c34rnp1rllm2nahh9jvszlzrw8ak4pf31q09cmq1")))) + (build-system chicken-build-system) + (arguments '(#:egg-name "srfi-1")) + (inputs + `(("chicken-test" ,chicken-test))) + (home-page "https://wiki.call-cc.org/eggref/5/srfi-1") + (synopsis "SRFI-1 list library") + (description + "The list library defined in +@uref{https://srfi.schemers.org/srfi-1/srfi-1.html, SRFI-1} contains a lot of +useful list processing procedures for construction, examining, destructuring +and manipulating lists and pairs.") + (license license:bsd-3))) + (define-public chicken-test (package (name "chicken-test") @@ -101,3 +133,4 @@ language standard, and includes many enhancements and extensions.") (description "This package provides a simple testing utility for CHICKEN Scheme.") (license license:bsd-3))) + |