guix-commits
[Top][All Lists]
Advanced

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

14/14: gnu: Add cl-1am.


From: guix-commits
Subject: 14/14: gnu: Add cl-1am.
Date: Fri, 5 Jun 2020 09:48:19 -0400 (EDT)

glv pushed a commit to branch master
in repository guix.

commit 1f9999df4a104558454d36d4aab821c9d5c631fd
Author: Katherine Cox-Buday <cox.katherine.e@gmail.com>
AuthorDate: Tue Jun 2 12:55:36 2020 -0500

    gnu: Add cl-1am.
    
    * gnu/packages/lisp-xyz.scm (sbcl-1am, cl-1am, ecl-1am): New variables.
    
    Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
---
 gnu/packages/lisp-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index e33f3b2..1bb6c4b 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -11869,3 +11869,32 @@ learn about each of the parameters.")
 
 (define-public ecl-sxql
   (sbcl-package->ecl-package sbcl-sxql))
+
+(define-public sbcl-1am
+  (let ((commit "8b1da94eca4613fd8a20bdf63f0e609e379b0ba5"))
+    (package
+      (name "sbcl-1am")
+      (version (git-version "0.0" "1" commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/lmj/1am.git";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "05ss4nz1jb9kb796295482b62w5cj29msfj8zis33sp2rw2vmv2g"))))
+      (build-system asdf-build-system/sbcl)
+      (arguments
+       `(#:asd-system-name "1am"))
+      (home-page "https://github.com/lmj/1am";)
+      (synopsis "Minimal testing framework for Common Lisp")
+      (description "A minimal testing framework for Common Lisp.")
+      (license license:expat))))
+
+(define-public cl-1am
+  (sbcl-package->cl-source-package sbcl-1am))
+
+(define-public ecl-1am
+  (sbcl-package->ecl-package sbcl-1am))



reply via email to

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