diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-06-10 16:16:52 +0900 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2025-06-11 22:15:34 +0800 |
commit | d154ff02195adbeb2e8c2fede14659fc3ddab199 (patch) | |
tree | 4b732ac75c20173365d3799b0811448271d037c0 | |
parent | fb6696c598f630ff46fe542a0523d47a788abaa0 (diff) |
build/chromium-binary: Fix indentation.
* nonguix/build/chromium-binary-build-system.scm: Fix indentation.
Signed-off-by: Hilton Chain <hako@ultrarare.space>
-rw-r--r-- | nonguix/build/chromium-binary-build-system.scm | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/nonguix/build/chromium-binary-build-system.scm b/nonguix/build/chromium-binary-build-system.scm index 6d5eeb2..0295891 100644 --- a/nonguix/build/chromium-binary-build-system.scm +++ b/nonguix/build/chromium-binary-build-system.scm @@ -32,32 +32,32 @@ (lambda (exe) (display (string-append "Wrapping " exe "\n")) (wrap-program exe - `("FONTCONFIG_PATH" ":" prefix - (,(string-join - (list - (string-append fontconfig-minimal "/etc/fonts") - output) - ":"))) - `("PATH" ":" prefix - (,(string-join - (append - bin-directories + `("FONTCONFIG_PATH" ":" prefix + (,(string-join (list - bin)) - ":"))) - `("LD_LIBRARY_PATH" ":" prefix - (,(string-join - (append - lib-directories - (list - (string-append nss "/lib/nss") - output)) - ":"))) - ;; Give a hint to Electron-based apps to detect if Wayland or X11 should - ;; be used. - ;; NOTE: The env-var version of this CLI arg was added in Electron >=28 - `("ELECTRON_OZONE_PLATFORM_HINT" ":" = - ("auto")))) + (string-append fontconfig-minimal "/etc/fonts") + output) + ":"))) + `("PATH" ":" prefix + (,(string-join + (append + bin-directories + (list + bin)) + ":"))) + `("LD_LIBRARY_PATH" ":" prefix + (,(string-join + (append + lib-directories + (list + (string-append nss "/lib/nss") + output)) + ":"))) + ;; Give a hint to Electron-based apps to detect if Wayland or X11 should + ;; be used. + ;; NOTE: The env-var version of this CLI arg was added in Electron >=28 + `("ELECTRON_OZONE_PLATFORM_HINT" ":" = + ("auto")))) (map (lambda (exe) (string-append bin "/" exe)) (filter @@ -72,7 +72,7 @@ (add-after 'install 'install-wrapper install-wrapper))) (define* (chromium-binary-build #:key inputs (phases %standard-phases) - #:allow-other-keys #:rest args) + #:allow-other-keys #:rest args) "Build the given package, applying all of PHASES in order." (apply gnu:gnu-build #:inputs inputs #:phases phases args)) |