gnu: xtl: Use G-expressions.
* gnu/packages/cpp.scm (xtl)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
6e0c8f097b
commit
ef64cc509e
1 changed files with 9 additions and 8 deletions
|
@ -691,12 +691,13 @@ intuitive syntax and trivial integration.")
|
|||
(native-inputs
|
||||
(list doctest googletest nlohmann-json))
|
||||
(arguments
|
||||
'(#:configure-flags
|
||||
'("-DBUILD_TESTS=ON")
|
||||
(list
|
||||
#:configure-flags
|
||||
#~(list "-DBUILD_TESTS=ON")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* _
|
||||
(lambda _
|
||||
(with-directory-excursion "test"
|
||||
(invoke "./test_xtl")))))))
|
||||
(home-page "https://github.com/QuantStack/xtl")
|
||||
|
|
Reference in a new issue