~ruther/guix-local

ef64cc509ed311cc7cab30daa8fbfee7495180bc — Tobias Geerinckx-Rice 2 years ago 6e0c8f0
gnu: xtl: Use G-expressions.

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

M gnu/packages/cpp.scm
M gnu/packages/cpp.scm => gnu/packages/cpp.scm +9 -8
@@ 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")