guix-commits
[Top][All Lists]
Advanced

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

05/16: gnu: xtl: Use G-expressions.


From: guix-commits
Subject: 05/16: gnu: xtl: Use G-expressions.
Date: Sat, 15 Jul 2023 18:15:06 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

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

    gnu: xtl: Use G-expressions.
    
    * gnu/packages/cpp.scm (xtl)[arguments]:
    Rewrite as G-expressions.
---
 gnu/packages/cpp.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 0ea80ea237..ec1f4cd325 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -691,14 +691,15 @@ intuitive syntax and trivial integration.")
     (native-inputs
      (list doctest googletest nlohmann-json))
     (arguments
-     '(#:configure-flags
-       '("-DBUILD_TESTS=ON")
-       #:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           (lambda* _
-             (with-directory-excursion "test"
-               (invoke "./test_xtl")))))))
+     (list
+      #:configure-flags
+      #~(list "-DBUILD_TESTS=ON")
+      #:phases
+      #~(modify-phases %standard-phases
+          (replace 'check
+            (lambda _
+              (with-directory-excursion "test"
+                (invoke "./test_xtl")))))))
     (home-page "https://github.com/QuantStack/xtl";)
     (build-system cmake-build-system)
     (synopsis "C++ template library providing some basic tools")



reply via email to

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