guix-commits
[Top][All Lists]
Advanced

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

02/16: gnu: Add sbcl-trivial-cltl2.


From: guix-commits
Subject: 02/16: gnu: Add sbcl-trivial-cltl2.
Date: Thu, 4 Jul 2019 13:28:10 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit 9526af923ad08b1059ea3a4f3c1f81b95169106a
Author: Pierre Neidhardt <address@hidden>
Date:   Thu Jul 4 19:17:33 2019 +0200

    gnu: Add sbcl-trivial-cltl2.
    
    * gnu/packages/lisp.scm (sbcl-trivial-cltl2): New variable.
---
 gnu/packages/lisp.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 11d21ca..8c3a7cb 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -6125,3 +6125,28 @@ namespace and value namespace (or variable namespace), 
but there are actually
 more — e.g., class namespace.
 This library offers macros to deal with symbols from any namespace.")
       (license license:llgpl))))
+
+(define-public sbcl-trivial-cltl2
+  (let ((commit "8eec8407df833e8f27df8a388bc10913f16d9e83")
+        (revision "1"))
+    (package
+      (name "sbcl-trivial-cltl2")
+      (build-system asdf-build-system/sbcl)
+      (version (git-version "0.1.1" revision commit))
+      (home-page "https://github.com/Zulu-Inuoe/trivial-cltl2";)
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url home-page)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "1dyyxz17vqv8hlfwq287gl8xxbvcnq798ajb7p5jdjz91wqf4bgk"))))
+      (synopsis "Simple CLtL2 compatibility layer for Common Lisp")
+      (description "This library is a portable compatibility layer around
+\"Common Lisp the Language, 2nd
+Edition\" (@url{https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node102.html})
+and it exports symbols from implementation-specific packages.")
+      (license license:llgpl))))



reply via email to

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