diff options
| author | Ian Eure <ian@retrospec.tv> | 2025-04-09 14:53:37 -0700 |
|---|---|---|
| committer | Ian Eure <ian@retrospec.tv> | 2025-04-11 17:04:09 -0700 |
| commit | d12d2bc72e7ed1a7fb3f4778bf42966307b1f2af (patch) | |
| tree | 4efae969b8f68832fb99eaed8441825c24bf7d29 /gnu/packages/librewolf.scm | |
| parent | e0ea819c4369354cd1fd86940f6b8a12de884953 (diff) | |
gnu: librewolf: Dedent #:configure-flags
* gnu/packages/librewolf.scm (librewolf):
[#:configure-flags]: Dedent for readability.
Change-Id: I79e945ac6cf0b67fc5aae6d6f4669e6af47f30c2
Diffstat (limited to 'gnu/packages/librewolf.scm')
| -rw-r--r-- | gnu/packages/librewolf.scm | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/gnu/packages/librewolf.scm b/gnu/packages/librewolf.scm index fb108945982..712c99bd2c5 100644 --- a/gnu/packages/librewolf.scm +++ b/gnu/packages/librewolf.scm @@ -221,45 +221,45 @@ (build-system gnu-build-system) (arguments (list - #:configure-flags #~(let ((clang #$(this-package-native-input "clang"))) - ;; Configuration. - `("--enable-jemalloc" - "--enable-system-pixman" - "--with-system-ffi" - "--with-system-icu" - "--with-system-jpeg" - "--with-system-libevent" - "--with-system-libvpx" - "--with-system-nspr" - "--with-system-nss" - "--with-system-png" - "--with-system-webp" - "--with-system-zlib" - "--without-wasm-sandboxed-libraries" + #:configure-flags + #~(let ((clang #$(this-package-native-input "clang"))) + ;; Configuration. + `("--enable-jemalloc" + "--enable-system-pixman" + "--with-system-ffi" + "--with-system-icu" + "--with-system-jpeg" + "--with-system-libevent" + "--with-system-libvpx" + "--with-system-nspr" + "--with-system-nss" + "--with-system-png" + "--with-system-webp" + "--with-system-zlib" + "--without-wasm-sandboxed-libraries" - ,(string-append "--with-clang-path=" clang - "/bin/clang") - ,(string-append "--with-libclang-path=" clang - "/lib") + ,(string-append "--with-clang-path=" clang + "/bin/clang") + ,(string-append "--with-libclang-path=" clang + "/lib") - ;; Distribution - "--with-distribution-id=org.guix" + ;; Distribution + "--with-distribution-id=org.guix" - ;; Features - "--enable-pulseaudio" + ;; Features + "--enable-pulseaudio" - ;; switch only available on x86, whereas EME - ;; is not supported on other targets - ,@(if #$(target-x86?) '("--disable-eme") '()) + ;; switch only available on x86, whereas EME is not supported on + ;; other targets + ,@(if #$(target-x86?) '("--disable-eme") '()) - ;; Build details - "--disable-elf-hack" - ;; Don't attempt to download toolchains. - ;; Upstream enables this, adding the flag - ;; ensures we don't use network in the build - ;; environment. - "--disable-bootstrap" - "--enable-strip")) + ;; Build details + "--disable-elf-hack" + ;; Don't attempt to download toolchains. Upstream enables this, + ;; adding the flag ensures we don't use network in the build + ;; environment. + "--disable-bootstrap" + "--enable-strip")) #:imported-modules %cargo-utils-modules #:modules `((ice-9 regex) (ice-9 string-fun) |
