me
/
guix
Archived
1
0
Fork 0

gnu: libosmium: Update to 2.19.0.

* gnu/packages/geo.scm (libosmium): Update to 2.19.0.
  [inputs]: Replace proj with proj-7, the last version with PROJ API
  version 4 compatibility. Remove sparsehash and utfcpp.
  [native-inputs]: Add graphviz-minimal, to build documentation.

Reviewed-by: Bruno Victal <mirai@makinata.eu>
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Hendursaga 2023-09-17 15:39:35 -04:00 committed by Guillaume Le Vaillant
parent be9f749a29
commit 84442d0423
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 23 additions and 25 deletions

View File

@ -89,6 +89,7 @@
#:use-module (gnu packages gnome)
#:use-module (gnu packages gps)
#:use-module (gnu packages graphics)
#:use-module (gnu packages graphviz)
#:use-module (gnu packages gtk)
#:use-module (gnu packages haskell-apps)
#:use-module (gnu packages haskell-xyz)
@ -1535,34 +1536,31 @@ visualizing and performing calculations with weather data.")
(define-public libosmium
(package
(name "libosmium")
(version "2.18.0")
(source
(origin
(version "2.19.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/osmcode/libosmium")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0fh57mpii1ksacwfx5rz213j896aklib53jbybld2i517q2mmxr0"))))
(base32
"0d69xzd29hk846g049y2g668mr8kaf05f6a26s3qn6az062hxfa7"))))
(build-system cmake-build-system)
(propagated-inputs
(list boost
(propagated-inputs (list boost
bzip2
expat
gdal
geos
lz4
proj
proj-7
protozero
sparsehash
utfcpp
zlib))
(native-inputs
(list doxygen))
(native-inputs (list doxygen graphviz-minimal))
(home-page "https://osmcode.org/libosmium/")
(synopsis "C++ library for working with OpenStreetMap data")
(description "Libosmium is a fast and flexible C++ library for working with
(description
"Libosmium is a fast and flexible C++ library for working with
OpenStreetMap data.")
(license license:boost1.0)))