guix-commits
[Top][All Lists]
Advanced

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

19/31: gnu: zutils: Use G-expressions.


From: guix-commits
Subject: 19/31: gnu: zutils: Use G-expressions.
Date: Mon, 17 Jul 2023 11:37:22 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 05b8222096dc271a2793913c0a300fba18c55c8e
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 9 02:00:00 2023 +0200

    gnu: zutils: Use G-expressions.
    
    * gnu/packages/compression.scm (zutils)[arguments]:
    Rewrite as G-expressions.
---
 gnu/packages/compression.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index efc869d16e..a14cbe982b 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -2421,16 +2421,16 @@ To download a zchunk file.
         (base32 "1vl8mhvsl0zlh34hwhc05vj33a2xfr0w7i978hcwaw8wn1w59bkq"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:configure-flags
-       (list "--sysconfdir=/etc")
-       #:phases
-       (modify-phases %standard-phases
-         (replace 'install
-          (lambda* (#:key make-flags outputs #:allow-other-keys)
-            (apply invoke "make" "install"
-                   (string-append "sysconfdir=" (assoc-ref outputs "out")
-                                  "/etc")
-                   make-flags))))))
+     (list
+      #:configure-flags
+      #~(list "--sysconfdir=/etc")
+      #:phases
+      #~(modify-phases %standard-phases
+          (replace 'install
+            (lambda* (#:key make-flags #:allow-other-keys)
+              (apply invoke "make" "install"
+                     (string-append "sysconfdir=" #$output "/etc")
+                     make-flags))))))
     (native-inputs
      ;; Needed to extract the source tarball and run the test suite.
      (list lzip))



reply via email to

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