mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add cl-clunit2.
* gnu/packages/lisp-xyz.scm (sbcl-clunit2, cl-clunit2, ecl-clunit2): New variables.
This commit is contained in:
parent
95abaafb74
commit
21a519fac9
1 changed files with 29 additions and 0 deletions
|
@ -9891,3 +9891,32 @@ be used with @code{cl-yacc}.")
|
||||||
|
|
||||||
(define-public ecl-cl-lex
|
(define-public ecl-cl-lex
|
||||||
(sbcl-package->ecl-package sbcl-cl-lex))
|
(sbcl-package->ecl-package sbcl-cl-lex))
|
||||||
|
|
||||||
|
(define-public sbcl-clunit2
|
||||||
|
(let ((commit "5e28343734eb9b7aee39306a614af92c1062d50b")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "sbcl-clunit2")
|
||||||
|
(version (git-version "0.2.4" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://notabug.org/cage/clunit2.git")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1ngiapfki6nm8a555mzhb5p7ch79i3w665za5bmb5j7q34fy80vw"))))
|
||||||
|
(build-system asdf-build-system/sbcl)
|
||||||
|
(synopsis "Unit testing framework for Common Lisp")
|
||||||
|
(description
|
||||||
|
"CLUnit is a Common Lisp unit testing framework. It is designed to be
|
||||||
|
easy to use so that you can quickly start testing.")
|
||||||
|
(home-page "https://notabug.org/cage/clunit2")
|
||||||
|
(license license:expat))))
|
||||||
|
|
||||||
|
(define-public cl-clunit2
|
||||||
|
(sbcl-package->cl-source-package sbcl-clunit2))
|
||||||
|
|
||||||
|
(define-public ecl-clunit2
|
||||||
|
(sbcl-package->ecl-package sbcl-clunit2))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue