[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/14: gnu: Add chicken-srfi-1.
From: |
guix-commits |
Subject: |
07/14: gnu: Add chicken-srfi-1. |
Date: |
Thu, 3 Dec 2020 10:25:22 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit f0f133d14fdcd6def27bfc53021ea64c5617c72c
Author: raingloom <raingloom@riseup.net>
AuthorDate: Tue Oct 13 09:51:02 2020 +0200
gnu: Add chicken-srfi-1.
* gnu/packages/chicken.scm (chicken-srfi-1): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/chicken.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index 442dff7..2649c8d 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)))
+
- branch master updated (1d03543 -> 41fb3d5), guix-commits, 2020/12/03
- 04/14: build-system: Add chicken-build-system., guix-commits, 2020/12/03
- 08/14: gnu: Add chicken-srfi-69., guix-commits, 2020/12/03
- 13/14: doc: Tweak wording of 'chicken-build-system' material., guix-commits, 2020/12/03
- 09/14: gnu: Add chicken-iset., guix-commits, 2020/12/03
- 11/14: gnu: Add chicken-srfi-14., guix-commits, 2020/12/03
- 01/14: gnu: guile-semver: Switch to Guile 3.0., guix-commits, 2020/12/03
- 02/14: self: Factorize package dependency enumeration., guix-commits, 2020/12/03
- 06/14: gnu: Add chicken-test., guix-commits, 2020/12/03
- 07/14: gnu: Add chicken-srfi-1.,
guix-commits <=
- 14/14: nls: Update 'fr' translation of the manual., guix-commits, 2020/12/03
- 05/14: gnu: Use qualified license names in chicken.scm instead of selective import., guix-commits, 2020/12/03
- 10/14: gnu: Add chicken-datatype., guix-commits, 2020/12/03
- 12/14: gnu: Added chicken-agrep., guix-commits, 2020/12/03
- 03/14: gnu: chicken: Add 'CHICKEN_REPOSITORY_PATH' search path spec., guix-commits, 2020/12/03