guix-commits
[Top][All Lists]
Advanced

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

06/09: gnu: RHash: Download tarball from SourceForge instead of a git ch


From: guix-commits
Subject: 06/09: gnu: RHash: Download tarball from SourceForge instead of a git checkout.
Date: Wed, 22 Jan 2020 16:14:51 -0500 (EST)

mbakke pushed a commit to branch core-updates
in repository guix.

commit 26edcd9b8db553bed324149bc039c306a804a2a3
Author: Marius Bakke <address@hidden>
AuthorDate: Sat Jan 18 21:16:26 2020 +0100

    gnu: RHash: Download tarball from SourceForge instead of a git checkout.
    
    * gnu/packages/crypto.scm (rhash)[source]: Change to URL-FETCH.
---
 gnu/packages/crypto.scm | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index 276612f..fde3ba2 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -711,14 +711,13 @@ BLAKE.")
     (version "1.3.9")
     (source
      (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/rhash/RHash";)
-             (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
+       (method url-fetch)
+       (uri (string-append "mirror://sourceforge/rhash/rhash/" version
+                           "/rhash-" version "-src.tar.gz"))
+       (file-name (string-append "rhash-" version ".tar.gz"))
        (sha256
         (base32
-         "06i49x1l21h2q7pfnf4crbmjyg8b9ad0qs10ywyyn5sjpi0c21wq"))))
+         "1xn9fqa6rlnhsbgami45g82dlw9i1skg2sri3ydiinwak5ph1ca2"))))
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags



reply via email to

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