mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: icecat: Fix Kerberos support.
Fixes <https://bugs.gnu.org/48959>. * gnu/packages/gnuzilla.scm (icecat)[arguments]: In the 'wrap-program' phase, add mit-krb5 to the LD_LIBRARY_PATH.
This commit is contained in:
parent
804c3c953e
commit
61b904b744
1 changed files with 7 additions and 2 deletions
|
@ -1276,14 +1276,19 @@ (define-public icecat
|
||||||
(pulseaudio (assoc-ref inputs "pulseaudio"))
|
(pulseaudio (assoc-ref inputs "pulseaudio"))
|
||||||
(pulseaudio-lib (string-append pulseaudio "/lib"))
|
(pulseaudio-lib (string-append pulseaudio "/lib"))
|
||||||
(libxscrnsaver (assoc-ref inputs "libxscrnsaver"))
|
(libxscrnsaver (assoc-ref inputs "libxscrnsaver"))
|
||||||
(libxscrnsaver-lib (string-append libxscrnsaver "/lib")))
|
(libxscrnsaver-lib (string-append libxscrnsaver "/lib"))
|
||||||
|
(mit-krb5 (assoc-ref inputs "mit-krb5"))
|
||||||
|
(mit-krb5-lib (string-append mit-krb5 "/lib")))
|
||||||
(wrap-program (car (find-files lib "^icecat$"))
|
(wrap-program (car (find-files lib "^icecat$"))
|
||||||
`("XDG_DATA_DIRS" prefix (,gtk-share))
|
`("XDG_DATA_DIRS" prefix (,gtk-share))
|
||||||
;; The following line is commented out because the icecat
|
;; The following line is commented out because the icecat
|
||||||
;; package on guix has been observed to be unstable when
|
;; package on guix has been observed to be unstable when
|
||||||
;; using wayland, and the bundled extensions stop working.
|
;; using wayland, and the bundled extensions stop working.
|
||||||
;; `("MOZ_ENABLE_WAYLAND" = ("1"))
|
;; `("MOZ_ENABLE_WAYLAND" = ("1"))
|
||||||
`("LD_LIBRARY_PATH" prefix (,pulseaudio-lib ,mesa-lib ,libxscrnsaver-lib)))
|
`("LD_LIBRARY_PATH" prefix (,pulseaudio-lib
|
||||||
|
,mesa-lib
|
||||||
|
,libxscrnsaver-lib
|
||||||
|
,mit-krb5-lib)))
|
||||||
#t))))))
|
#t))))))
|
||||||
(home-page "https://www.gnu.org/software/gnuzilla/")
|
(home-page "https://www.gnu.org/software/gnuzilla/")
|
||||||
(synopsis "Entirely free browser derived from Mozilla Firefox")
|
(synopsis "Entirely free browser derived from Mozilla Firefox")
|
||||||
|
|
Loading…
Reference in a new issue