diff options
author | Vasile Dumitrascu <va511e@yahoo.com> | 2017-04-23 18:53:57 +0200 |
---|---|---|
committer | Kei Kebreau <kei@openmailbox.org> | 2017-04-23 16:52:06 -0400 |
commit | 638787307e30c96aa3864a4b6d822da06fca6688 (patch) | |
tree | 9e8356103d9ee849137eaa288220a11d184dcd6e /gnu/packages | |
parent | a71d769d1e230463a043e12a10a557fb0c0aa8c4 (diff) |
gnu: Add emacs-google-maps.
* gnu/packages/emacs.scm (emacs-google-maps): New variable.
Signed-off-by: Kei Kebreau <kei@openmailbox.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 47ea8d43a1..14d8511849 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1230,6 +1230,25 @@ or XEmacs.") the Emacs buffer.") (license license:gpl3+))) +(define-public emacs-google-maps + (package + (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")) + (sha256 + (base32 + "014bxapm4d8vjxbzrfjdpsavxyfx981mlcb10aq5rmigr6il8ybs")))) + (build-system emacs-build-system) + (home-page "https://github.com/jd/google-maps.el") + (synopsis "Access Google Maps from Emacs") + (description "The @code{google-maps} package allows to display Google +Maps directly inside Emacs.") + (license license:gpl3+))) + (define-public emacs-mmm-mode (package (name "emacs-mmm-mode") |