guix-commits
[Top][All Lists]
Advanced

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

01/10: gnu: mash: Fetch sources from git.


From: Ricardo Wurmus
Subject: 01/10: gnu: mash: Fetch sources from git.
Date: Wed, 7 Nov 2018 15:42:59 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 497fc04d8fe7adfc74646f2e3f3baba0410a3ae3
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Nov 7 20:49:19 2018 +0100

    gnu: mash: Fetch sources from git.
    
    * gnu/packages/bioinformatics.scm (mash)[source]: Fetch from git.
---
 gnu/packages/bioinformatics.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 1fac960..625c074 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -3979,14 +3979,14 @@ sequences).")
     (name "mash")
     (version "2.0")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/marbl/mash/archive/v";
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/marbl/mash.git";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "00fx14vpmgsijwxd1xql3if934l82v8ckqgjjyyhnr36qb9qrskv"))
+                "13h6v4wzfflb5raxwlqmkl2km54m3izm30f1w9p9scjmfrnfn0wx"))
               (modules '((guix build utils)))
               (snippet
                '(begin



reply via email to

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