guix-commits
[Top][All Lists]
Advanced

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

05/14: gnu: seqtk: Fetch sources from git.


From: Ricardo Wurmus
Subject: 05/14: gnu: seqtk: Fetch sources from git.
Date: Wed, 7 Nov 2018 17:17:48 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 019fcdf20af9de5860d7005fe5fb7adef222ce59
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Nov 7 22:33:06 2018 +0100

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

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index a5554ae..b98be8e 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -5870,15 +5870,15 @@ is one that takes arguments.")
     (name "seqtk")
     (version "1.2")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/lh3/seqtk/archive/v";
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/lh3/seqtk.git";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "0ywdyzpmfiz2wp6ampbzqg4y8bj450nfgqarpamg045b8mk32lxx"))
-                            (modules '((guix build utils)))
+                "1mdkgmzdy734a0na9hxbl4k41jjkm87bvjbm7bdbh50fsra86f93"))
+              (modules '((guix build utils)))
               (snippet
                '(begin
                   ;; Remove extraneous header files, as is done in the seqtk



reply via email to

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