mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add sbcl-cl-cffi-gtk-gobject.
* gnu/packages/lisp.scm (sbcl-cl-cffi-gtk-gobject): New variable.
This commit is contained in:
parent
64dcf7d99b
commit
77a5461c31
1 changed files with 21 additions and 0 deletions
|
@ -3297,3 +3297,24 @@ (define-public sbcl-cl-cffi-gtk-glib
|
|||
(substitute* "glib/glib.init.lisp"
|
||||
(("libglib|libgthread" all) (string-append
|
||||
(assoc-ref inputs "glib") "/lib/" all))))))))))
|
||||
|
||||
(define-public sbcl-cl-cffi-gtk-gobject
|
||||
(package
|
||||
(inherit sbcl-cl-cffi-gtk-boot0)
|
||||
(name "sbcl-cl-cffi-gtk-gobject")
|
||||
(inputs
|
||||
`(("glib" ,glib)
|
||||
("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
|
||||
("trivial-garbage" ,sbcl-trivial-garbage)
|
||||
("bordeaux-threads" ,sbcl-bordeaux-threads)
|
||||
("closer-mop" ,sbcl-closer-mop)
|
||||
,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
|
||||
(arguments
|
||||
`(#:asd-file "gobject/cl-cffi-gtk-gobject.asd"
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-paths
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "gobject/gobject.init.lisp"
|
||||
(("libgobject" all) (string-append
|
||||
(assoc-ref inputs "glib") "/lib/" all))))))))))
|
||||
|
|
Loading…
Reference in a new issue