guix-commits
[Top][All Lists]
Advanced

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

05/10: gnu: emacs-google-maps: Don't use unstable tarball.


From: guix-commits
Subject: 05/10: gnu: emacs-google-maps: Don't use unstable tarball.
Date: Wed, 27 Mar 2019 17:05:35 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 49464d2b160cd496a14278f4da0dd89168023a67
Author: Efraim Flashner <address@hidden>
Date:   Wed Mar 27 22:49:32 2019 +0200

    gnu: emacs-google-maps: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-google-maps)[source]: Download using
    git-fetch.
---
 gnu/packages/emacs-xyz.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index cb4c4dd..dc9c3cd 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1485,13 +1485,14 @@ written in the Go programming language.")
     (name "emacs-google-maps")
     (version "1.0.0")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/jd/google-maps.el/";
-                                  "archive/" version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/jd/google-maps.el.git";)
+                     (commit version)))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "014bxapm4d8vjxbzrfjdpsavxyfx981mlcb10aq5rmigr6il8ybs"))))
+                "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0"))))
     (build-system emacs-build-system)
     (home-page "https://github.com/jd/google-maps.el";)
     (synopsis "Access Google Maps from Emacs")



reply via email to

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