aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/lisp.scm
diff options
context:
space:
mode:
authorjgart2022-01-26 03:30:42 -0500
committerjgart2022-01-26 03:36:29 -0500
commitf0822363ab181eb930245eb17e6a6e615c22dc9a (patch)
tree26a9b246146dde2f820782cfbc6ddff800fad8b7 /gn/packages/lisp.scm
parent2a4ade90ff856a24f29bd8911d36c1363750fc41 (diff)
downloadguix-bioinformatics-f0822363ab181eb930245eb17e6a6e615c22dc9a.tar.gz
gn: packages: lisp: Add cl-2am.
Diffstat (limited to 'gn/packages/lisp.scm')
-rw-r--r--gn/packages/lisp.scm32
1 files changed, 32 insertions, 0 deletions
diff --git a/gn/packages/lisp.scm b/gn/packages/lisp.scm
index ef1f76b..5c12f41 100644
--- a/gn/packages/lisp.scm
+++ b/gn/packages/lisp.scm
@@ -110,3 +110,35 @@ with a star added at the end.")
(define-public ecl-defstar
(sbcl-package->ecl-package sbcl-defstar))
+(define-public sbcl-2am
+ (let ((commit "1d2fd21bbd8f26ec91b962705cab098dd7b5f11c")
+ (revision "0"))
+ (package
+ (name "sbcl-2am")
+ (version "0.4.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.common-lisp.net/dkochmanski/2am")
+ (commit commit)))
+ (sha256
+ (base32 "0zgx4ymyzvfg44z36yr4l87cd9mprajd7sycr2zc67ab6330rynf"))
+ (file-name (git-file-name name commit))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ `(#:asd-files '("2am.asd")))
+ (home-page "https://gitlab.common-lisp.net/dkochmanski/2am")
+ (synopsis "Small testing framework based on 1am")
+ (description
+"Small testing framework for Common Lisp. The entire API consists of:
+@code{test}, @code{is}, @code{signals}, @code{finishes}, @code{run},
+suite and @code{setf} suite.")
+ (license license:expat))))
+
+(define-public cl-2am
+ (sbcl-package->cl-source-package sbcl-2am))
+
+(define-public ecl-2am
+ (sbcl-package->ecl-package sbcl-2am))
+