me
/
guix
Archived
1
0
Fork 0

gnu: emacs-google-maps: Fix version.

* gnu/packages/emacs-xyz.scm (emacs-google-maps)[source]: Replace very
large date integer with the last upstream release.
master
Tobias Geerinckx-Rice 2020-10-05 00:14:59 +02:00
parent 40dfc5195f
commit 0450499930
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 12 additions and 12 deletions

View File

@ -2318,21 +2318,21 @@ written in the Go programming language.")
(license license:bsd-3))) (license license:bsd-3)))
(define-public emacs-google-maps (define-public emacs-google-maps
(let ((version "20181121") ;no release tag since 2013 ;; There has been no new release tag since 2013.
(commit "2eb16ff609f5a9f8d02c15238a111fbb7db6c146") (let ((commit "2eb16ff609f5a9f8d02c15238a111fbb7db6c146")
(revision "1")) (revision "1"))
(package (package
(name "emacs-google-maps") (name "emacs-google-maps")
(version (git-version version revision commit)) (version (git-version "1.0.0" revision commit))
(source (origin (source
(method git-fetch) (origin
(uri (git-reference (method git-fetch)
(url "https://github.com/jd/google-maps.el") (uri (git-reference
(commit commit))) (url "https://github.com/jd/google-maps.el")
(file-name (git-file-name name version)) (commit commit)))
(sha256 (file-name (git-file-name name version))
(base32 (sha256
"1bl0dnksbf14d0xcnvdy9qpvzc5c8jwkxpmfvgayj6djikxnw2md")))) (base32 "1bl0dnksbf14d0xcnvdy9qpvzc5c8jwkxpmfvgayj6djikxnw2md"))))
(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")