guix-commits
[Top][All Lists]
Advanced

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

03/06: gnu: gpxsee: Fetch from Git instead of a generated tarball.


From: guix-commits
Subject: 03/06: gnu: gpxsee: Fetch from Git instead of a generated tarball.
Date: Thu, 13 Jun 2019 07:01:45 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit ed8a551653e3d833d3c9cbbd412782acfb26f666
Author: Ludovic Courtès <address@hidden>
Date:   Thu Jun 13 11:03:46 2019 +0200

    gnu: gpxsee: Fetch from Git instead of a generated tarball.
    
    * gnu/packages/gps.scm (gpxsee)[source]: Use 'git-fetch'.
---
 gnu/packages/gps.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/gps.scm b/gnu/packages/gps.scm
index ec45704..75212ed 100644
--- a/gnu/packages/gps.scm
+++ b/gnu/packages/gps.scm
@@ -177,14 +177,14 @@ coordinates as well as partial support for adjustments in 
global coordinate syst
     (name "gpxsee")
     (version "7.8")
     (source (origin
-              (method url-fetch)
-              (uri
-               (string-append "https://github.com/tumic0/GPXSee/archive/";
-                              version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/tumic0/GPXSee";)
+                    (commit version)))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1k9nbs3knl6s0s4bf1rgrc9lwczawnzm7629igw0zmxb5yka7d9v"))))
+                "1ymqz4wrl9ghkyyqi2vrnlyvz3fc84s3p8a1dkiqlvyvj360ck9j"))))
     (build-system gnu-build-system)
     (arguments
      '(#:phases



reply via email to

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