Vasile Dumitrascu writes: > * gnu/packages/emacs.scm (emacs-google-maps): New variable. > --- > gnu/packages/emacs.scm | 19 +++++++++++++++++++ > 1 file changed, 19 insertions(+) > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 673bbdf89..95298a0fa 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -1229,6 +1229,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:gpl1+))) I can't seem to find this license mentioned anywhere, but maybe I'm just missing it. Where can I find it mentioned? > + > (define-public emacs-mmm-mode > (package > (name "emacs-mmm-mode") Other than finding the license, this patch looks fine.