guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/67: gnu: Add cl-strings.


From: Pierre Neidhardt
Subject: 01/67: gnu: Add cl-strings.
Date: Wed, 17 Oct 2018 04:20:12 -0400 (EDT)

ambrevar pushed a commit to branch wip-next-browser2
in repository guix.

commit aa4d1514f9ec2c1f674ba933a8f00e410e4a2cda
Author: Pierre Neidhardt <address@hidden>
Date:   Tue Aug 21 18:25:50 2018 +0200

    gnu: Add cl-strings.
    
    * gnu/packages/lisp.scm (cl-strings, sbcl-cl-strings, ecl-cl-strings): New 
variables.
---
 gnu/packages/lisp.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 8b8b922..6700674 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -1526,3 +1526,34 @@ based on a subset of MDL.  Confusion is a MDL 
interpreter that works just well
 enough to play the original mainframe Zork all the way through.")
       (home-page 
"http://www.russotto.net/git/mrussotto/confusion/src/master/src/README";)
       (license license:gpl3+))))
+
+(define-public sbcl-cl-strings
+  (let ((revision "1")
+        (commit "c5c5cbafbf3e6181d03c354d66e41a4f063f00ae"))
+    (package
+      (name "sbcl-cl-strings")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/diogoalexandrefranco/cl-strings";)
+               (commit commit)))
+         (sha256
+          (base32
+           "00754mfaqallj480lwd346nkfb6ra8pa8xcxcylf4baqn604zlmv"))
+         (file-name (string-append "cl-strings-" version "-checkout"))))
+      (build-system asdf-build-system/sbcl)
+      (synopsis "Portable, dependency-free set of utilities to manipulate 
strings in Common Lisp")
+      (description
+       "cl-strings is a small, portable, dependency-free set of utilities that
+make it even easier to manipulate text in Common Lisp.  It has 100% test
+coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")
+      (home-page "https://github.com/diogoalexandrefranco/cl-strings";)
+      (license license:expat))))
+
+(define-public cl-strings
+  (sbcl-package->cl-source-package sbcl-cl-strings))
+
+(define-public ecl-cl-strings
+  (sbcl-package->ecl-package sbcl-cl-strings))



reply via email to

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