1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-06-03 19:54:03 +02:00

gnu: xtl: Use G-expressions.

* gnu/packages/cpp.scm (xtl)[arguments]:
Rewrite as G-expressions.
This commit is contained in:
Tobias Geerinckx-Rice
2023-07-09 02:00:03 +02:00
parent 6e0c8f097b
commit ef64cc509e
+9 -8
View File
@@ -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")