gnu: icedove: Add WebAuthn support.
* gnu/packages/gnuzilla.scm (icedove)[inputs]: Add eudev. [phases]: Add eudev to the wrapper. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>master
parent
84780ff427
commit
a807d84921
|
@ -1545,10 +1545,12 @@ standards of the IceCat project.")
|
||||||
(gtk (assoc-ref inputs "gtk+"))
|
(gtk (assoc-ref inputs "gtk+"))
|
||||||
(gtk-share (string-append gtk "/share"))
|
(gtk-share (string-append gtk "/share"))
|
||||||
(pulseaudio (assoc-ref inputs "pulseaudio"))
|
(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$"))
|
(wrap-program (car (find-files lib "^icedove$"))
|
||||||
`("XDG_DATA_DIRS" prefix (,gtk-share))
|
`("XDG_DATA_DIRS" prefix (,gtk-share))
|
||||||
`("LD_LIBRARY_PATH" prefix (,pulseaudio-lib)))
|
`("LD_LIBRARY_PATH" prefix (,pulseaudio-lib ,eudev-lib)))
|
||||||
#t))))))
|
#t))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("bzip2" ,bzip2)
|
`(("bzip2" ,bzip2)
|
||||||
|
@ -1584,6 +1586,7 @@ standards of the IceCat project.")
|
||||||
("pulseaudio" ,pulseaudio)
|
("pulseaudio" ,pulseaudio)
|
||||||
("sqlite" ,sqlite)
|
("sqlite" ,sqlite)
|
||||||
("startup-notification" ,startup-notification)
|
("startup-notification" ,startup-notification)
|
||||||
|
("eudev" ,eudev)
|
||||||
("unzip" ,unzip)
|
("unzip" ,unzip)
|
||||||
("zip" ,zip)
|
("zip" ,zip)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
|
|
Reference in New Issue