guix-commits
[Top][All Lists]
Advanced

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

11/15: gnu: xlsxio: Use G-expressions.


From: guix-commits
Subject: 11/15: gnu: xlsxio: Use G-expressions.
Date: Sat, 22 Oct 2022 17:25:12 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 3fae4f64bafee61d335e42aa83a112328654f329
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Oct 16 02:00:01 2022 +0200

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

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 6ea2ead555..855d2b3d47 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -1531,15 +1531,16 @@ SAX2 APIs.")
      (list expat gnu-make minizip which))
     (build-system gnu-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (delete 'configure)
-         (delete 'check)
-         (replace 'install
-           (lambda* (#:key outputs #:allow-other-keys)
-             (invoke "make" "install"
-                     (string-append
-                      "PREFIX=" (assoc-ref outputs "out"))))))))
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (delete 'configure)
+          (delete 'check)
+          (replace 'install
+            (lambda* (#:key outputs #:allow-other-keys)
+              (invoke "make" "install"
+                      (string-append
+                       "PREFIX=" (assoc-ref outputs "out"))))))))
     (synopsis "C library for reading and writing .xlsx files")
     (description "XLSX I/O aims to provide a C library for reading and writing
 .xlsx files.  The .xlsx file format is the native format used by Microsoft(R)



reply via email to

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