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-gdk-pixbuf.
* gnu/packages/lisp.scm (sbcl-cl-cffi-gtk-gdk-pixbuf): New variable.
This commit is contained in:
parent
9ecc457b52
commit
a3bdddc359
1 changed files with 19 additions and 0 deletions
|
@ -3378,3 +3378,22 @@ (define-public sbcl-cl-cffi-gtk-pango
|
|||
(("libpango" all)
|
||||
(string-append
|
||||
(assoc-ref inputs "pango") "/lib/" all))))))))))
|
||||
|
||||
(define-public sbcl-cl-cffi-gtk-gdk-pixbuf
|
||||
(package
|
||||
(inherit sbcl-cl-cffi-gtk-boot0)
|
||||
(name "sbcl-cl-cffi-gtk-gdk-pixbuf")
|
||||
(inputs
|
||||
`(("gdk-pixbuf" ,gdk-pixbuf)
|
||||
("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
|
||||
,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
|
||||
(arguments
|
||||
`(#:asd-file "gdk-pixbuf/cl-cffi-gtk-gdk-pixbuf.asd"
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-paths
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "gdk-pixbuf/gdk-pixbuf.init.lisp"
|
||||
(("libgdk_pixbuf" all)
|
||||
(string-append
|
||||
(assoc-ref inputs "gdk-pixbuf") "/lib/" all))))))))))
|
||||
|
|
Loading…
Reference in a new issue