mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add cl-assert-p.
* gnu/packages/lisp-check.scm (cl-assert-p, ecl-assert-p, sbcl-assert-p): New variables. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
dc95215dc0
commit
f39a18e7d4
1 changed files with 26 additions and 0 deletions
|
@ -123,6 +123,32 @@ minimal dependencies on DISSECT.")
|
|||
(define-public cl-assertion-error
|
||||
(sbcl-package->cl-source-package sbcl-assertion-error))
|
||||
|
||||
(define-public sbcl-assert-p
|
||||
(package
|
||||
(name "sbcl-assert-p")
|
||||
(version "1.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/noloop/assert-p")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name "assert-p" version))
|
||||
(sha256
|
||||
(base32 "1x24rkqkqiw8zd26swi9rmhfplkmr5scz3bhjwccah9d2s36b1xs"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(inputs (list sbcl-assertion-error sbcl-simplet))
|
||||
(home-page "https://github.com/noloop/assert-p")
|
||||
(synopsis "Common Lisp assertion library")
|
||||
(description "This package provides a Common Lisp collection of assertions.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public ecl-assert-p
|
||||
(sbcl-package->ecl-package sbcl-assert-p))
|
||||
|
||||
(define-public cl-assert-p
|
||||
(sbcl-package->cl-source-package sbcl-assert-p))
|
||||
|
||||
(define-public sbcl-check-it
|
||||
(let ((commit "b79c9103665be3976915b56b570038f03486e62f"))
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue