* [bug#44376] [PATCH] gnu: Add icedove-wayland.
@ 2020-11-01 19:39 Jonathan Brielmaier
[not found] ` <handler.44376.B.16042595647299.ack@debbugs.gnu.org>
0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Brielmaier @ 2020-11-01 19:39 UTC (permalink / raw)
To: 44376; +Cc: jonathan.brielmaier
* gnu/packages/gnuzilla.scm (icedove/wayland): New variable.
---
gnu/packages/gnuzilla.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm
index db67d7ad0a..b6e68c8132 100644
--- a/gnu/packages/gnuzilla.scm
+++ b/gnu/packages/gnuzilla.scm
@@ -1476,6 +1476,27 @@ standards of the IceCat project.")
Thunderbird. It supports email, news feeds, chat, calendar and contacts.")
(license license:mpl2.0)))
+(define-public icedove/wayland
+ (package/inherit icedove
+ (name "icedove-wayland")
+ (arguments
+ (substitute-keyword-arguments (package-arguments icedove)
+ ((#:phases phases)
+ `(modify-phases ,phases
+ (replace 'wrap-program
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (lib (string-append out "/lib"))
+ (gtk (assoc-ref inputs "gtk+"))
+ (gtk-share (string-append gtk "/share"))
+ (pulseaudio (assoc-ref inputs "pulseaudio"))
+ (pulseaudio-lib (string-append pulseaudio "/lib")))
+ (wrap-program (car (find-files lib "^icedove$"))
+ `("MOZ_ENABLE_WAYLAND" = ("1"))
+ `("XDG_DATA_DIRS" prefix (,gtk-share))
+ `("LD_LIBRARY_PATH" prefix (,pulseaudio-lib)))
+ #t)))))))))
+
(define-public firefox-decrypt
(package
(name "firefox-decrypt")
--
2.29.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-11-10 21:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-01 19:39 [bug#44376] [PATCH] gnu: Add icedove-wayland Jonathan Brielmaier
[not found] ` <handler.44376.B.16042595647299.ack@debbugs.gnu.org>
2020-11-01 19:42 ` [bug#44376] Acknowledgement ([PATCH] gnu: Add icedove-wayland.) Jonathan Brielmaier
2020-11-10 21:07 ` bug#44376: " Marius Bakke
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.