diff options
author | Andreas Enge <andreas@enge.fr> | 2025-07-31 13:29:54 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-31 13:33:09 +0200 |
commit | e1271b7f01d79470e4d355a63d848d887cf4b30b (patch) | |
tree | b94e0d04b7981d678961ec69bae70e8b08e6e287 | |
parent | 7cff4d241abea31dbae60e8d232333f76888a266 (diff) |
gnu: osmium-tool: Update to 1.18.0.
* gnu/packages/geo.scm (osmium-tool): Update to 1.18.0.
[source]: Remove snippet.
[inputs]: Replace rapidjson by nlohmann-json.
Change-Id: I9c689c27003430c175e17c57ddb6762a5f319716
-rw-r--r-- | gnu/packages/geo.scm | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 262461d040..6bd92de6a0 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -2136,7 +2136,7 @@ OpenStreetMap data.") (define-public osmium-tool (package (name "osmium-tool") - (version "1.15.0") + (version "1.18.0") (source (origin (method git-fetch) (uri (git-reference @@ -2145,13 +2145,9 @@ OpenStreetMap data.") (file-name (git-file-name name version)) (sha256 (base32 - "0d90vz316xdl3c416nicgdw7ybw17l2125wgxglbzl7jaqngapy5")) - (modules '((guix build utils))) - (snippet - ;; Remove bundled libraries. - '(delete-file-recursively "include/rapidjson")))) + "13zqgniyl58m9gywfsi2wagrf0gh93d850krmx1ndd6r3jzgj978")))) (build-system cmake-build-system) - (inputs (list libosmium rapidjson)) + (inputs (list libosmium nlohmann-json)) (native-inputs (list pandoc)) (home-page "https://osmcode.org/osmium-tool/") (synopsis "Osmium command-line tool") |