[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#48980] [PATCH v2 2/2] gnu: icedove: Add WebAuthn support.
From: |
Brice Waegeneire |
Subject: |
[bug#48980] [PATCH v2 2/2] gnu: icedove: Add WebAuthn support. |
Date: |
Sun, 20 Jun 2021 11:32:22 +0200 |
* gnu/packages/gnuzilla.scm (icedove)[inputs]: Add eudev.
[phases]: Add eudev to the wrapper.
---
gnu/packages/gnuzilla.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm
index 84feab777e..053d4f1822 100644
--- a/gnu/packages/gnuzilla.scm
+++ b/gnu/packages/gnuzilla.scm
@@ -1542,10 +1542,12 @@ standards of the IceCat project.")
(gtk (assoc-ref inputs "gtk+"))
(gtk-share (string-append gtk "/share"))
(pulseaudio (assoc-ref inputs "pulseaudio"))
- (pulseaudio-lib (string-append pulseaudio "/lib")))
+ (pulseaudio-lib (string-append pulseaudio "/lib"))
+ (eudev (assoc-ref inputs "eudev"))
+ (eudev-lib (string-append eudev "/lib")))
(wrap-program (car (find-files lib "^icedove$"))
`("XDG_DATA_DIRS" prefix (,gtk-share))
- `("LD_LIBRARY_PATH" prefix (,pulseaudio-lib)))
+ `("LD_LIBRARY_PATH" prefix (,pulseaudio-lib ,eudev-lib)))
#t))))))
(inputs
`(("bzip2" ,bzip2)
@@ -1581,6 +1583,7 @@ standards of the IceCat project.")
("pulseaudio" ,pulseaudio)
("sqlite" ,sqlite)
("startup-notification" ,startup-notification)
+ ("eudev" ,eudev)
("unzip" ,unzip)
("zip" ,zip)
("zlib" ,zlib)))
--
2.31.1
- [bug#48980] [PATCH 0/2] icecat, icedove: Add U2F and WebAuthn support, Brice Waegeneire, 2021/06/12
- [bug#48980] [PATCH 2/2] gnu: icedove: Add WebAuthn support., Brice Waegeneire, 2021/06/12
- [bug#48980] [PATCH 1/2] gnu: icecat: Add WebAuthn support., Brice Waegeneire, 2021/06/12
- [bug#48980] [PATCH v2 1/2] gnu: icecat: Add WebAuthn support., Brice Waegeneire, 2021/06/20
- [bug#48980] [PATCH v2 2/2] gnu: icedove: Add WebAuthn support.,
Brice Waegeneire <=
- [bug#48980] [PATCH 0/2] icecat, icedove: Add U2F and WebAuthn support, Jonathan Brielmaier, 2021/06/23