From 8fdfe11674a71fcd8b0f64621caa125dedf572cb Mon Sep 17 00:00:00 2001 From: Cayetano Santos Date: Thu, 25 Sep 2025 10:51:37 +0200 Subject: [PATCH] gnu: olm: Update to 3.2.16. * gnu/packages/crypto.scm (olm): Update to 3.2.16. [arguments]: Use G-Expressions. [home-page]: Update. Change-Id: Id582c16a69dc337875c0505ed7e5651549aca0e1 --- gnu/packages/crypto.scm | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index f3f50e78072..2cc9963ee10 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -1337,7 +1337,7 @@ Trusted comments are signed, thus verified, before being displayed.") (define-public olm (package (name "olm") - (version "3.2.14") + (version "3.2.16") (source (origin (method git-fetch) (uri (git-reference @@ -1345,7 +1345,7 @@ Trusted comments are signed, thus verified, before being displayed.") (commit version))) (sha256 (base32 - "0pj7gs32ixhlls792wah7xf49j5pra0avp7dpvy9cndkdkg6biq5")) + "19yibssxn12q6ddl15nvqzvcf1hwqial48ng6llfafwbkfdb8z95")) (file-name (git-file-name name version)) ;; Delete the bundled blob. It's free, but unauditable, ;; and apparently only required for android. @@ -1353,18 +1353,19 @@ Trusted comments are signed, thus verified, before being displayed.") "android/gradle/wrapper/gradle-wrapper.jar")))) (build-system cmake-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (with-directory-excursion "tests" - (invoke "ctest" ".")))))))) + (list + #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (with-directory-excursion "tests" + (invoke "ctest" ".")))))))) (synopsis "Implementation of the Olm and Megolm cryptographic ratchets") (description "The Olm library implements the Double Ratchet cryptographic ratchet. It is written in C and C++11, and exposed as a C API.") - (home-page "https://matrix.org/docs/projects/other/olm/") + (home-page "https://gitlab.matrix.org/matrix-org/olm/") (license license:asl2.0))) (define-deprecated-package libolm