mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: gajim: Fix GtkFileChooserDialog.
* gnu/packages/messaging.scm (gajim)[arguments]: Add 'wrap-program phase to fix GtkFileChooserDialog.
This commit is contained in:
parent
a73489e8a7
commit
8584965b79
1 changed files with 9 additions and 1 deletions
|
@ -627,7 +627,15 @@ (define-public gajim
|
||||||
(with-directory-excursion icons
|
(with-directory-excursion icons
|
||||||
(symlink adwaita "Adwaita")
|
(symlink adwaita "Adwaita")
|
||||||
(copy-recursively hicolor "hicolor")))
|
(copy-recursively hicolor "hicolor")))
|
||||||
#t)))))
|
#t))
|
||||||
|
(add-after 'install-icons 'wrap-program
|
||||||
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
(wrap-program (string-append (assoc-ref outputs "out")
|
||||||
|
"/bin/gajim")
|
||||||
|
;; For GtkFileChooserDialog.
|
||||||
|
`("GSETTINGS_SCHEMA_DIR" =
|
||||||
|
(,(string-append (assoc-ref inputs "gtk+")
|
||||||
|
"/share/glib-2.0/schemas")))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("intltool" ,intltool)
|
`(("intltool" ,intltool)
|
||||||
("xorg-server" ,xorg-server)))
|
("xorg-server" ,xorg-server)))
|
||||||
|
|
Loading…
Reference in a new issue