diff options
Diffstat (limited to 'gnu/packages/gnunet.scm')
-rw-r--r-- | gnu/packages/gnunet.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm index 013e974dfa..ab4fe85710 100644 --- a/gnu/packages/gnunet.scm +++ b/gnu/packages/gnunet.scm @@ -13,7 +13,7 @@ ;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de> ;;; Copyright © 2022 Maxime Devos <maximedevos@telenet.be> ;;; Copyright © 2023 Adam Faiz <adam.faiz@disroot.org> -;;; Copyright © 2023, 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2023, 2024 Maxim Cournoyer <maxim@guixotic.coop> ;;; ;;; This file is part of GNU Guix. ;;; @@ -193,7 +193,7 @@ authentication and support for SSL3 and TLS.") (define-public gnunet (package (name "gnunet") - (version "0.24.2") + (version "0.25.1") (source (origin (method url-fetch) @@ -201,7 +201,7 @@ authentication and support for SSL3 and TLS.") ".tar.gz")) (sha256 (base32 - "0ixgyq331vyv1vv63jcxgqwwyb7pxb69arsdvp1z09wlgn84lkif")))) + "0p4gcv67rh9832vgi5k31pgpq6hmv6198dfmbyfizyaprlb6qcr1")))) (build-system meson-build-system) (inputs (list bluez @@ -235,7 +235,9 @@ authentication and support for SSL3 and TLS.") which)) (arguments (list - #:parallel-tests? #f ;parallel tests aren't supported + ;; Only running util tests until the p2p tests stop being flaky. + ;; See <https://bugs.gnunet.org/view.php?id=10430#c25964>. + #:test-options #~(list "--suite=util") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'disable-network-tests |