guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/07: gnu: libsignal-protocol-c: Don't use unstable tarball.


From: guix-commits
Subject: 07/07: gnu: libsignal-protocol-c: Don't use unstable tarball.
Date: Wed, 24 Jun 2020 03:55:57 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit d739b8d8b8c4fa49d3a49f218cb8b8e111715ec1
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Jun 24 10:41:50 2020 +0300

    gnu: libsignal-protocol-c: Don't use unstable tarball.
    
    * gnu/packages/messaging.scm (libsignal-protocol-c)[source]: Download
    using git-fetch.
---
 gnu/packages/messaging.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index a03c620..8ac03ef 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -155,14 +155,14 @@ keys, no previous conversation is compromised.")
   (name "libsignal-protocol-c")
   (version "2.3.2")
   (source (origin
-           (method url-fetch)
-           (uri (string-append "https://github.com/WhisperSystems/";
-                               "libsignal-protocol-c/archive/v" version
-                               ".tar.gz"))
-           (file-name (string-append name "-" version ".tar.gz"))
+           (method git-fetch)
+           (uri (git-reference
+                  (url 
"https://github.com/WhisperSystems/libsignal-protocol-c";)
+                  (commit (string-append "v" version))))
+           (file-name (git-file-name name version))
            (sha256
             (base32
-             "0380hl6fw3ppf265fg897pyrpqygpx4m9j8ifq118bim8lq6z0pk"))))
+             "1qj2w4csy6j9jg1jy66n1qwysx7hgjywk4n35hlqcnh1kpa14k3p"))))
   (arguments
    `(;; Required for proper linking and for tests to run.
      #:configure-flags '("-DBUILD_SHARED_LIBS=on" "-DBUILD_TESTING=1")))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]