gnu: Add sbcl-trivia.balland2006.

* gnu/packages/lisp.scm (sbcl-trivia.balland2006): New variable.
This commit is contained in:
Pierre Neidhardt 2019-07-04 19:24:30 +02:00
parent 02a8324b12
commit 9d450c6d42
No known key found for this signature in database
GPG key ID: 9BDCF497A4BBCC7F

View file

@ -6397,3 +6397,21 @@ (define-public sbcl-trivia.trivial
be faster and more extensible than Optima.
This system contains the base level system of Trivia with a trivial optimizer.")))
(define-public sbcl-trivia.balland2006
(package
(inherit sbcl-trivia.level0)
(name "sbcl-trivia.balland2006")
(inputs
`(("trivia.trivial" ,sbcl-trivia.trivial)
("iterate" ,sbcl-iterate)
("type-i" ,sbcl-type-i)
("alexandria" ,sbcl-alexandria)))
(arguments
;; Tests are done in trivia itself.
`(#:tests? #f))
(description "Trivia is a pattern matching compiler that is compatible
with Optima, another pattern matching library for Common Lisp. It is meant to
be faster and more extensible than Optima.
This system contains the base level system of Trivia with a trivial optimizer.")))