guix-patches
[Top][All Lists]
Advanced

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

[bug#64673] [PATCH 2/3] gnu: quickjs: Use G-expressions.


From: Zheng Junjie
Subject: [bug#64673] [PATCH 2/3] gnu: quickjs: Use G-expressions.
Date: Mon, 17 Jul 2023 12:10:56 +0800

* gnu/packages/javascript.scm (quickjs)[arguments]:
Rewrite as G-expressions.
---
 gnu/packages/javascript.scm | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/javascript.scm b/gnu/packages/javascript.scm
index ca467bee65..b9ee5a93b3 100644
--- a/gnu/packages/javascript.scm
+++ b/gnu/packages/javascript.scm
@@ -821,16 +821,15 @@ (define-public quickjs
                 "06pywwpmfwjz225h59wf90q96a2fd66qfcw5xa6m6y9k9k7glnx4"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:make-flags
-       (list "prefix="
-             (string-append "DESTDIR=" %output)
-             ,@(if (target-riscv64?) '("LDFLAGS=-latomic") '()))
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure)
-         (replace 'check
-           (lambda _
-             (invoke "make" "microbench"))))))
+     (list #:make-flags
+           #~(list "prefix="
+                   (string-append "DESTDIR=" #$output)
+                   #$@(if (target-riscv64?) '("LDFLAGS=-latomic") '()))
+           #:phases #~(modify-phases %standard-phases
+                        (delete 'configure)
+                        (replace 'check
+                          (lambda _
+                            (invoke "make" "microbench"))))))
     (home-page "https://bellard.org/quickjs/";)
     (synopsis "Small embeddable Javascript engine")
     (description "QuickJS supports the ES2020 specification including modules,
-- 
2.41.0






reply via email to

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