diff options
| author | Ian Eure <ian@retrospec.tv> | 2025-01-21 19:45:50 -0800 |
|---|---|---|
| committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2025-01-22 18:20:38 +0800 |
| commit | fd351356e0f63b9efc5dad7ff06f6b22e000b93f (patch) | |
| tree | 39bf123da8a23af51ea4aa409c59a2fb30bc9825 | |
| parent | a99ddc8b532817745ca45794abf53ab852545d4c (diff) | |
gnu: librewolf: Tidy code formatting.
* gnu/packages/librewolf.scm (librewolf): Tidy code formatting.
Change-Id: I0341da820f170c26888800ea433e539f2a6a2520
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
| -rw-r--r-- | gnu/packages/librewolf.scm | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/gnu/packages/librewolf.scm b/gnu/packages/librewolf.scm index 98bd6913b5a..5bdf7a0f81c 100644 --- a/gnu/packages/librewolf.scm +++ b/gnu/packages/librewolf.scm @@ -570,10 +570,13 @@ (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 @@ ;; 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"))) |
