mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: gimp: Wrap GI_TYPELIB_PATH exactly.
* gnu/packages/gimp.scm (gimp-3) [phases] {wrap}: Wrap GI_TYPELIB_PATH exactly. Fixes: https://issues.guix.gnu.org/77921 Change-Id: Ia9d40386ee1aaa342e4278d96a698559f4b26881
This commit is contained in:
parent
56999614a4
commit
2b4680c6c1
1 changed files with 4 additions and 1 deletions
|
@ -460,7 +460,10 @@ that is extensible via a plugin system.")
|
||||||
(for-each
|
(for-each
|
||||||
(lambda (prog)
|
(lambda (prog)
|
||||||
(wrap-program prog
|
(wrap-program prog
|
||||||
`("GI_TYPELIB_PATH" suffix
|
;; Ensure GI_TYPELIB_PATH is not extended from the
|
||||||
|
;; environment, as it could cause Gimp to crash (see
|
||||||
|
;; bug#77921).
|
||||||
|
`("GI_TYPELIB_PATH" =
|
||||||
(,(getenv "GI_TYPELIB_PATH")))
|
(,(getenv "GI_TYPELIB_PATH")))
|
||||||
`("GUIX_PYTHONPATH" suffix
|
`("GUIX_PYTHONPATH" suffix
|
||||||
(,(getenv "GUIX_PYTHONPATH")))))
|
(,(getenv "GUIX_PYTHONPATH")))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue