mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: librewolf: Tidy code formatting.
* gnu/packages/librewolf.scm (librewolf): Tidy code formatting. Change-Id: I0341da820f170c26888800ea433e539f2a6a2520
This commit is contained in:
parent
0742d4078a
commit
066bb7bd00
1 changed files with 13 additions and 9 deletions
|
@ -570,10 +570,13 @@ (define (runpaths-of-input label)
|
|||
(string-append (assoc-ref inputs
|
||||
lib-name)
|
||||
"/lib"))
|
||||
'("mesa" "libpng-apng" "libnotify" "libva"
|
||||
"pulseaudio" "gtk+" "pipewire"
|
||||
;; For U2F and WebAuthn
|
||||
"eudev")))
|
||||
'("eudev" ; For U2F and WebAuthn
|
||||
"libnotify"
|
||||
"libpng-apng"
|
||||
"libva"
|
||||
"mesa"
|
||||
"pipewire" ; For sharing on Wayland
|
||||
"pulseaudio")))
|
||||
|
||||
;; VA-API is run in the RDD (Remote Data Decoder) sandbox
|
||||
;; and must be explicitly given access to files it needs.
|
||||
|
@ -584,11 +587,12 @@ (define (runpaths-of-input label)
|
|||
;; runpaths of the needed libraries to add everything to
|
||||
;; LD_LIBRARY_PATH. These will then be accessible in the
|
||||
;; RDD sandbox.
|
||||
(rdd-whitelist (map (cut string-append <> "/")
|
||||
(delete-duplicates (append-map
|
||||
runpaths-of-input
|
||||
'("mesa"
|
||||
"ffmpeg")))))
|
||||
(rdd-whitelist
|
||||
(map (cut string-append <> "/")
|
||||
(delete-duplicates
|
||||
(append-map runpaths-of-input
|
||||
'("mesa"
|
||||
"ffmpeg")))))
|
||||
(gtk-share (string-append (assoc-ref inputs
|
||||
"gtk+")
|
||||
"/share")))
|
||||
|
|
Loading…
Reference in a new issue