diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-07-23 10:11:29 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-07-23 10:11:29 +0200 |
commit | 4c204d01d57ac7da11a5772d5d4e3254d1c2408f (patch) | |
tree | c7e5cb013abc742734acd9613674df4ebddfdeef /gnu/packages/cpp.scm | |
parent | 82bdb77082fa4e100761f70086b745dfb280c3ac (diff) | |
parent | 445a0359083388b5ee686e6e855f94a3aac5f79c (diff) | |
download | guix-gnome-team.tar.gz |
Merge branch 'master' into gnome-team gnome-team
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r-- | gnu/packages/cpp.scm | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 7d3db8ea9b..1a71c86c3c 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -451,7 +451,7 @@ operating on batches.") (define-public google-highway (package (name "google-highway") - (version "1.0.3") + (version "1.0.5") (source (origin (method git-fetch) @@ -460,7 +460,7 @@ operating on batches.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1828rz9w9sr3zlyg25b6nm7j5j5m0xnic7hy36gpsbxvq358ibpf")))) + (base32 "01ig4iqicm57nycl9q8mx1b22gvl4wj5j1vfp1jczhmrga4bca8v")))) (build-system cmake-build-system) (arguments `(#:configure-flags (list "-DHWY_SYSTEM_GTEST=on"))) @@ -677,7 +677,7 @@ intuitive syntax and trivial integration.") (define-public xtl (package (name "xtl") - (version "0.7.4") + (version "0.7.5") (source (origin (method git-fetch) (uri @@ -686,19 +686,20 @@ intuitive syntax and trivial integration.") (commit version))) (sha256 (base32 - "134pgvmf9cx5dxs0m0m3qhp3m3r1gl86ic3xax21zc4sdj8sdq46")) + "1llfy6pkzqx2va74h9xafjylyvw6839a843mqc05n6x6wll5bkam")) (file-name (git-file-name name version)))) (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") |