3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add sbcl-cffi-toolchain.

* gnu/packages/lisp.scm (sbcl-cffi-toolchain): New variable.
This commit is contained in:
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

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)))))