gnu: Add sbcl-cffi-toolchain.
* gnu/packages/lisp.scm (sbcl-cffi-toolchain): New variable.
This commit is contained in:
parent
5d9bf76235
commit
99b3d203fb
|
@ -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
|
in the CFFI-SYS package, and a portable frontend in the CFFI
|
||||||
package.")
|
package.")
|
||||||
(license license:expat)))
|
(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)))))
|
||||||
|
|
Loading…
Reference in New Issue