guix-commits
[Top][All Lists]
Advanced

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

05/12: gnu: geomyidae: Don't use unstable tarball.


From: guix-commits
Subject: 05/12: gnu: geomyidae: Don't use unstable tarball.
Date: Tue, 19 Mar 2019 12:03:59 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 429947ef626337cf67775b74ac312fd1ee057167
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Mar 19 15:06:52 2019 +0100

    gnu: geomyidae: Don't use unstable tarball.
    
    * gnu/packages/web.scm (geomyidae)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/web.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index dfabb3a..12f3b57 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -6204,18 +6204,19 @@ in Perl but is not nearly as capable as 
@code{HTML::Tidy}.")
     (version "0.31")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "http://git.r-36.net/geomyidae/snapshot/";
-                           "geomyidae-" version ".tar.bz2"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "git://r-36.net/geomyidae")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "1ih7220c6mgq4r7blm4kx3pxbl53sph58lqgwci6cmi3c0sq5c3x"))))
+        (base32 "1ldv4bca2x9kq2fwmzg3l6qahvzg9kki3j9j5njl74k23zc2acik"))))
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags (list "CC=gcc"
                           (string-append "PREFIX="
                                          (assoc-ref %outputs "out")))
-       #:tests? #f                                ;no tests
+       #:tests? #f                      ; no tests
        #:phases (modify-phases %standard-phases
                   (delete 'configure))))
     (home-page "http://git.r-36.net/geomyidae";)



reply via email to

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