From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:44076) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iqOet-0003gH-FF for guix-patches@gnu.org; Sat, 11 Jan 2020 16:51:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iqOes-0007GO-BZ for guix-patches@gnu.org; Sat, 11 Jan 2020 16:51:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:50848) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iqOes-0007Fh-7Z for guix-patches@gnu.org; Sat, 11 Jan 2020 16:51:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iqOes-0005i5-6Y for guix-patches@gnu.org; Sat, 11 Jan 2020 16:51:02 -0500 Subject: bug#39007: [PATCH] gnu: Add libolm. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87mub1hm2p.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me> <87y2uj1l8g.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me> Date: Sat, 11 Jan 2020 22:50:45 +0100 In-Reply-To: <87y2uj1l8g.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me> ("=?UTF-8?Q?Nicol=C3=B2?= Balzarotti"'s message of "Tue, 07 Jan 2020 13:53:19 +0100") Message-ID: <87blr9u0ga.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: =?UTF-8?Q?Nicol=C3=B2?= Balzarotti Cc: 39007-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, anothersms@gmail.com (Nicol=C3=B2 Balzarotti) skribis: >>>From c6d662517bfa876ca470b9e45e0206bd75b5840a Mon Sep 17 00:00:00 2001 > From: nixo > Date: Sun, 5 Jan 2020 16:46:01 +0100 > Subject: [PATCH] gnu: Add libolm. > > * gnu/packages/messaging.scm (libolm): New variable. I took the liberty to apply the changes below and committed it. Thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 7709775a59..1c6e759c83 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -1062,7 +1062,8 @@ Trusted comments are signed, thus verified, before being displayed.") (invoke "ctest" "build/tests")))))) (build-system cmake-build-system) (synopsis "Implementation of the olm and megolm cryptographic ratchets") - (description "An implementation of the Double Ratchet cryptographic -ratchet written in @code{C} and @code{C++11} and exposed as a @code{C API}.") + (description "The libolm 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/") (license license:asl2.0))) --=-=-=--