guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/05: gnu: links: Use gexps.


From: guix-commits
Subject: 05/05: gnu: links: Use gexps.
Date: Fri, 6 May 2022 07:39:52 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 22b794a4a7df724b41a6e17897bf47136dd1857a
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Fri May 6 14:27:36 2022 +0300

    gnu: links: Use gexps.
    
    * gnu/packages/web-browsers.scm (links)[arguments]: Rewrite using gexps.
---
 gnu/packages/web-browsers.scm | 33 +++++++++++++++++----------------
 1 file changed, 17 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index 2632ba257b..198d289ef3 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -167,23 +167,24 @@ management, extensions such as advertisement blocker and 
colorful tabs.")
                 "1jy90k04kl7y3l8jzg5jx7fglyqzngng0964j7j67gjxy9vkanzh"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:configure-flags '("--enable-graphics")
+     (list
+       #:configure-flags #~(list "--enable-graphics")
        #:phases
-       (modify-phases %standard-phases
-         (replace 'configure
-           (lambda* (#:key outputs (configure-flags '()) #:allow-other-keys)
-             ;; The tarball uses a very old version of autoconf. It doesn't
-             ;; understand extra flags like `--enable-fast-install', so
-             ;; we need to invoke it with just what it understands.
-             (let ((out (assoc-ref outputs "out")))
-               ;; 'configure' doesn't understand '--host'.
-               ,@(if (%current-target-system)
-                     `((setenv "CHOST" ,(%current-target-system)))
-                     '())
-               (setenv "CONFIG_SHELL" (which "bash"))
-               (apply invoke "./configure"
-                      (string-append "--prefix=" out)
-                      configure-flags)))))))
+       #~(modify-phases %standard-phases
+           (replace 'configure
+             (lambda* (#:key outputs (configure-flags '()) #:allow-other-keys)
+               ;; The tarball uses a very old version of autoconf. It doesn't
+               ;; understand extra flags like `--enable-fast-install', so
+               ;; we need to invoke it with just what it understands.
+               (let ((out (assoc-ref outputs "out")))
+                 ;; 'configure' doesn't understand '--host'.
+                 #$@(if (%current-target-system)
+                       #~((setenv "CHOST" #$(%current-target-system)))
+                       #~())
+                 (setenv "CONFIG_SHELL" (which "bash"))
+                 (apply invoke "./configure"
+                        (string-append "--prefix=" out)
+                        configure-flags)))))))
     (native-inputs (list pkg-config))
     (inputs
      (list gpm



reply via email to

[Prev in Thread] Current Thread [Next in Thread]