gnu: Add sbcl-cffi-toolchain.

* gnu/packages/lisp.scm (sbcl-cffi-toolchain): New variable.
master
Pierre Neidhardt 2018-10-02 19:58:49 +02:00
parent 5d9bf76235
commit 99b3d203fb
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 12 additions and 0 deletions

View File

@ -2972,3 +2972,15 @@ The CFFI library is composed of a Lisp-implementation-specific backend
in the CFFI-SYS package, and a portable frontend in the CFFI
package.")
(license license:expat)))
(define-public sbcl-cffi-toolchain
(package
(inherit sbcl-cffi-bootstrap)
(name "sbcl-cffi-toolchain")
(inputs
`(("libffi" ,libffi)
("sbcl-cffi" ,sbcl-cffi-bootstrap)))
(arguments
(substitute-keyword-arguments (package-arguments sbcl-cffi-bootstrap)
((#:asd-system-name _) #f)
((#:tests? _) #t)))))