mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add sbcl-iolib.grovel.
* gnu/packages/lisp.scm (sbcl-iolib.grovel): New variable.
This commit is contained in:
parent
5dffca3377
commit
216dd6f6af
1 changed files with 22 additions and 0 deletions
|
@ -5792,3 +5792,25 @@ and @code{kqueue(2)}), a pathname library and file-system utilities.")
|
|||
(arguments
|
||||
'(#:asd-file "iolib.base.asd"))
|
||||
(synopsis "Base package for IOLib, a Common Lisp I/O library")))
|
||||
|
||||
(define-public sbcl-iolib.grovel
|
||||
(package
|
||||
(inherit sbcl-iolib.asdf)
|
||||
(name "sbcl-iolib.grovel")
|
||||
(inputs
|
||||
`(("iolib.asdf" ,sbcl-iolib.asdf)
|
||||
("iolib.conf" ,sbcl-iolib.conf)
|
||||
("iolib.base", sbcl-iolib.base)
|
||||
("cffi", sbcl-cffi)))
|
||||
(arguments
|
||||
'(#:asd-file "iolib.grovel.asd"
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'install-header
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
;; This header is required by sbcl-iolib.
|
||||
(install-file "src/grovel/grovel-common.h"
|
||||
(string-append (assoc-ref outputs "out")
|
||||
"/lib/sbcl"))
|
||||
#t)))))
|
||||
(synopsis "CFFI Groveller for IOLib, a Common Lisp I/O library")))
|
||||
|
|
Loading…
Reference in a new issue