gnu: emacs-google-maps: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-google-maps)[source]: Download using git-fetch.master
parent
2c19ff18e2
commit
49464d2b16
|
@ -1485,13 +1485,14 @@ written in the Go programming language.")
|
||||||
(name "emacs-google-maps")
|
(name "emacs-google-maps")
|
||||||
(version "1.0.0")
|
(version "1.0.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/jd/google-maps.el/"
|
(uri (git-reference
|
||||||
"archive/" version ".tar.gz"))
|
(url "https://github.com/jd/google-maps.el.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"014bxapm4d8vjxbzrfjdpsavxyfx981mlcb10aq5rmigr6il8ybs"))))
|
"183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/jd/google-maps.el")
|
(home-page "https://github.com/jd/google-maps.el")
|
||||||
(synopsis "Access Google Maps from Emacs")
|
(synopsis "Access Google Maps from Emacs")
|
||||||
|
|
Reference in New Issue