gnu: Add trivial-features.

* gnu/packages/lisp.scm (cl-trivial-features, ecl-trivial-features, sbcl-trivial-features): New variables.
master
Pierre Neidhardt 2018-08-24 11:12:36 +02:00 committed by Pierre Neidhardt
parent 99c6124229
commit 8c661ff1ef
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 27 additions and 0 deletions

View File

@ -1557,3 +1557,30 @@ utilities that make it even easier to manipulate text in Common Lisp. It has
(define-public ecl-cl-strings
(sbcl-package->ecl-package sbcl-cl-strings))
(define-public sbcl-trivial-features
(package
(name "sbcl-trivial-features")
(version "0.8")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/trivial-features/trivial-features/archive/v"
version ".tar.gz"))
(sha256
(base32 "0db1awn6jyhcfhyfvpjvfziprmq85cigf19mwbvaprhblydsag3c"))
(file-name (string-append "trivial-features-" version ".tar.gz"))))
(build-system asdf-build-system/sbcl)
(arguments '(#:tests? #f))
(home-page "http://cliki.net/trivial-features")
(synopsis "Ensures consistency of @code{*FEATURES*} in Common Lisp")
(description "Trivial-features ensures that @code{*FEATURES*} is
consistent across multiple Common Lisp implementations.")
(license license:expat)))
(define-public cl-trivial-features
(sbcl-package->cl-source-package sbcl-trivial-features))
(define-public ecl-trivial-features
(sbcl-package->ecl-package sbcl-trivial-features))