mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: sugar-toolkit-gtk3: Include output directory in GI_TYPELIB_PATH.
* gnu/packages/sugar.scm (sugar-toolkit-gtk3)[arguments]: Include package output directory in search path for GI_TYPELIB_PATH.
This commit is contained in:
parent
5e22f8962a
commit
b8f6cffb11
1 changed files with 13 additions and 12 deletions
|
@ -293,7 +293,7 @@ (define-public sugar-toolkit-gtk3
|
|||
((guix build python-build-system) #:prefix python:)
|
||||
(guix build utils))
|
||||
#:phases
|
||||
'(modify-phases %standard-phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-build-system
|
||||
(lambda _
|
||||
(substitute* "autogen.sh"
|
||||
|
@ -304,7 +304,8 @@ (define-public sugar-toolkit-gtk3
|
|||
(wrap-program (search-input-file outputs "bin/sugar-activity3")
|
||||
`("GUIX_PYTHONPATH" = (,(getenv "GUIX_PYTHONPATH")
|
||||
,(python:site-packages inputs outputs)))
|
||||
`("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))))))))
|
||||
`("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")
|
||||
,(string-append #$output "/lib/girepository-1.0")))))))))
|
||||
(inputs
|
||||
(list alsa-lib
|
||||
libice
|
||||
|
|
Loading…
Reference in a new issue