[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/04: gnu: Add emacs-org-street.
From: |
guix-commits |
Subject: |
04/04: gnu: Add emacs-org-street. |
Date: |
Fri, 20 Oct 2023 12:13:59 -0400 (EDT) |
snape pushed a commit to branch master
in repository guix.
commit b3d0797d279b0aa48f6b652c149b7f974f3acc89
Author: pinoaffe <pinoaffe@gmail.com>
AuthorDate: Tue Jul 25 17:33:40 2023 +0200
gnu: Add emacs-org-street.
* gnu/packages/emacs-xyz.scm (emacs-org-street): New variable.
Signed-off-by: Clément Lassieur <clement@lassieur.org>
---
gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0c8c56868b..585821652f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4969,6 +4969,32 @@ directly inside Emacs. It requires a Google Map Static
API key to function.")
reverse geocode using Nominatim, a component of OpenStreetMap.")
(license license:gpl3+))))
+(define-public emacs-org-street
+ (let ((revision "0")
+ (commit "17913afe01504ee0cbcf83abaca18c5c618f9b33"))
+ (package
+ (name "emacs-org-street")
+ (version (git-version "0.7.1" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/emacs-weirdware/org-street")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1a5mnnvs4yxrw4s71z9ap65xi0fc1ki1qprif5jxn8apswjlmiw1"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-nominatim))
+ (home-page "https://codeberg.org/emacs-weirdware/org-street")
+ (synopsis "(Reverse) Geocoding for Emacs Org files")
+ (description "Org Street is an extension for Org Mode for turning the
+names of places into a LOCATION property containing their address. Given some
+freeform text approximately describing a location, it geocodes it with
+OpenStreetMap’s Nominatim API to determine a canonical location. If Nominatim
+returns multiple locations, a list is displayed to choose from.")
+ (license license:gpl3+))))
+
(define-public emacs-graphviz-dot-mode
(package
(name "emacs-graphviz-dot-mode")