diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2019-07-04 19:25:05 +0200 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2019-07-04 19:25:59 +0200 |
commit | 9d4e42261ebefe1fec3a3bca27962e54ed2bfa26 (patch) | |
tree | 180e6317b901ec68ed6b656fa6e0f1143864ff11 | |
parent | 9b5e5eafc6e7d7766dee56186dd9487bc9825c9e (diff) | |
download | guix-9d4e42261ebefe1fec3a3bca27962e54ed2bfa26.tar guix-9d4e42261ebefe1fec3a3bca27962e54ed2bfa26.tar.gz |
gnu: Add sbcl-trivia.cffi.
* gnu/packages/lisp.scm (sbcl-trivia.cffi): New variable.
-rw-r--r-- | gnu/packages/lisp.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 306602ffe7..08af5808e7 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -6442,3 +6442,16 @@ with Optima, another pattern matching library for Common Lisp. It is meant to be faster and more extensible than Optima. This system contains the fare-quasiquote extension."))) + +(define-public sbcl-trivia.cffi + (package + (inherit sbcl-trivia.level0) + (name "sbcl-trivia.cffi") + (inputs + `(("cffi" ,sbcl-cffi) + ("trivia.trivial" ,sbcl-trivia.trivial))) + (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 CFFI foreign slot access extension."))) |