[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/08: gnu: Add osmium-tool.
From: |
guix-commits |
Subject: |
06/08: gnu: Add osmium-tool. |
Date: |
Wed, 9 Mar 2022 17:39:58 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit eeac33a3defec89fcc5d417844fd4ce67b41ba0e
Author: Nikolay Korotkiy <sikmir@gmail.com>
AuthorDate: Tue Feb 8 12:00:48 2022 +0300
gnu: Add osmium-tool.
* gnu/packages/geo.scm (osmium-tool): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/geo.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 82e1ef73f7..6b3448a261 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -82,6 +82,7 @@
#:use-module (gnu packages graphics)
#:use-module (gnu packages gtk)
#:use-module (gnu packages haskell-apps)
+ #:use-module (gnu packages haskell-xyz)
#:use-module (gnu packages image)
#:use-module (gnu packages image-processing)
#:use-module (gnu packages icu4c)
@@ -1209,6 +1210,35 @@ to create databases that are optimized for
rendering/tile/map-services.")
OpenStreetMap data.")
(license license:boost1.0)))
+(define-public osmium-tool
+ (package
+ (name "osmium-tool")
+ (version "1.14.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/osmcode/osmium-tool";)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0zgyqyrs89vch0qnkh9m5xq079sr2wmydy5zz4l8xbysbjf6xry5"))
+ (modules '((guix build utils)))
+ (snippet
+ ;; Remove bundled libraries.
+ '(delete-file-recursively "include/rapidjson"))))
+ (build-system cmake-build-system)
+ (inputs
+ (list libosmium
+ rapidjson))
+ (native-inputs
+ (list pandoc))
+ (home-page "https://osmcode.org/osmium-tool/";)
+ (synopsis "Osmium command-line tool")
+ (description "Command line tool for working with OpenStreetMap data
+based on the Osmium library.")
+ (license license:gpl3+)))
+
(define-public osm2pgsql
(package
(name "osm2pgsql")
- branch master updated (d3a7cd7acf -> 878578c0fa), guix-commits, 2022/03/09
- 07/08: gnu: Add libtree., guix-commits, 2022/03/09
- 01/08: gnu: slurm: Use gexps and remove input labels., guix-commits, 2022/03/09
- 02/08: gnu: nyacc@1.00.2: Fix build., guix-commits, 2022/03/09
- 03/08: gnu: hurd: Adjust to the transition from "--system" to "gnu.system"., guix-commits, 2022/03/09
- 04/08: system: hurd: Move the Shepherd before the Hurd in %BASE-PACKAGES/HURD., guix-commits, 2022/03/09
- 05/08: gnu: libosmium: Update to 2.18.0., guix-commits, 2022/03/09
- 06/08: gnu: Add osmium-tool.,
guix-commits <=
- 08/08: services: bluetooth: Add missing config parameters., guix-commits, 2022/03/09