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>
parent
dc95215dc0
commit
f39a18e7d4
|
@ -123,6 +123,32 @@ minimal dependencies on DISSECT.")
|
||||||
(define-public cl-assertion-error
|
(define-public cl-assertion-error
|
||||||
(sbcl-package->cl-source-package sbcl-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
|
(define-public sbcl-check-it
|
||||||
(let ((commit "b79c9103665be3976915b56b570038f03486e62f"))
|
(let ((commit "b79c9103665be3976915b56b570038f03486e62f"))
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue