[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#52548] [PATCH 1/2] gnu: Add osmium-tool.
From: |
Nikolay Korotkiy |
Subject: |
[bug#52548] [PATCH 1/2] gnu: Add osmium-tool. |
Date: |
Tue, 8 Feb 2022 12:00:48 +0300 |
From: Nikolay Korotkiy <sikmir@gmail.com>
* gnu/packages/geo.scm (osmium-tool): New variable.
---
gnu/packages/geo.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 23cec0f9b7..153e4582bd 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -82,6 +82,7 @@ (define-module (gnu packages geo)
#: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,37 @@ (define-public libosmium
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.
+ '(begin
+ (delete-file-recursively "include/rapidjson")
+ #t))))
+ (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")
--
2.34.1
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [bug#52548] [PATCH 1/2] gnu: Add osmium-tool.,
Nikolay Korotkiy <=