mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add pdal.
* gnu/packages/geo.scm (pdal): New variable. Change-Id: I7c24fec69b4f0c19a1c246fab39b994e17e36f3a
This commit is contained in:
parent
e34ebd7f73
commit
51de844a0f
1 changed files with 42 additions and 0 deletions
|
@ -101,6 +101,7 @@ (define-module (gnu packages geo)
|
||||||
#:use-module (gnu packages imagemagick)
|
#:use-module (gnu packages imagemagick)
|
||||||
#:use-module (gnu packages java)
|
#:use-module (gnu packages java)
|
||||||
#:use-module (gnu packages kde)
|
#:use-module (gnu packages kde)
|
||||||
|
#:use-module (gnu packages libunwind)
|
||||||
#:use-module (gnu packages libusb)
|
#:use-module (gnu packages libusb)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages lua)
|
#:use-module (gnu packages lua)
|
||||||
|
@ -1229,6 +1230,47 @@ (define-public spatialite-gui
|
||||||
(home-page "https://www.gaia-gis.it/fossil/spatialite_gui/index")
|
(home-page "https://www.gaia-gis.it/fossil/spatialite_gui/index")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public pdal
|
||||||
|
(package
|
||||||
|
(name "pdal")
|
||||||
|
(version "2.7.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/PDAL/PDAL")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0gg5lcshlmn3wwak42xr0b8a8gdr4572d7hrcvxn2291kp2c3096"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "ctest" "-E" ;; This test hangs.
|
||||||
|
"pdal_io_stac_reader_test")))))))
|
||||||
|
(native-inputs (list python))
|
||||||
|
(inputs (list gdal
|
||||||
|
h3
|
||||||
|
libgeotiff
|
||||||
|
libunwind
|
||||||
|
libxml2
|
||||||
|
nlohmann-json
|
||||||
|
openssl
|
||||||
|
proj
|
||||||
|
utfcpp
|
||||||
|
xz
|
||||||
|
`(,zstd "lib")))
|
||||||
|
(home-page "https://pdal.io/")
|
||||||
|
(synopsis "Point Data Abstraction Library")
|
||||||
|
(description "PDAL is a C++ library for translating and manipulating point
|
||||||
|
cloud data. It is very much like the GDAL library which handles raster and
|
||||||
|
vector data.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public gdal
|
(define-public gdal
|
||||||
(package
|
(package
|
||||||
(name "gdal")
|
(name "gdal")
|
||||||
|
|
Loading…
Reference in a new issue