guix-commits
[Top][All Lists]
Advanced

[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)))
+



reply via email to

[Prev in Thread] Current Thread [Next in Thread]