From 224499f2d466b1a3f3a45e44a709a983185b69ca Mon Sep 17 00:00:00 2001 From: Mattia Bunel Date: Fri, 5 Jan 2024 14:50:53 +0100 Subject: gnu: Add laszip. * gnu/packages/geo.scm (laszip): New variable. Signed-off-by: Mathieu Othacehe Change-Id: I8baf25f1d51c9ac90bcea4a1e9a564e21e0a9ee6 --- gnu/packages/geo.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'gnu/packages/geo.scm') diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 31abb2cc36..73b7aa3d11 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -3228,3 +3228,31 @@ For maps, it can uses its own \"binfile\" map format, or Garmin map file format, and data from OpenStreetMap, Garmin maps, Marco Polo Grosser Reiseplaner, Routeplaner Europa 2007, Map + Route.") (license license:gpl2))) + +(define-public laszip + (package + (name "laszip") + (version "3.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/LASzip/LASzip") + (commit "3.4.3"))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09lcsgxwv0jq50fhsgfhx0npbf1zcwn3hbnq6q78fshqksbxmz7m")))) + (build-system cmake-build-system) + (arguments + (list + #:configure-flags #~(list "-DLASZIP_BUILD_STATIC=NO") + #:build-type "Release" + ;; No tests. + #:tests? #f)) + (home-page "https://laszip.org/") + (synopsis "Compression library for LAS files") + (description + "LASzip is a library for compressing @code{LAS} files and uncompressing +@code{LAZ} files. The @code{LAS} format is a file format designed for the +interchange and archiving of lidar point cloud data.") + (license license:asl2.0))) -- cgit v1.2.3 From 6448443b823ced75f5be85705e7dc7fb338ef8eb Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Fri, 12 Jan 2024 22:14:42 +0100 Subject: gnu: qmapshack: Update to 1.17.1. * gnu/packages/geo.scm (qmapshack): Update to 1.17.1. Change-Id: I85cace78a9c38342a000488dfa80795f914bf2c5 --- gnu/packages/geo.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/geo.scm') diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 73b7aa3d11..087d63e736 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -2233,7 +2233,7 @@ data.") (define-public qmapshack (package (name "qmapshack") - (version "1.16.1") + (version "1.17.1") (source (origin (method git-fetch) @@ -2242,7 +2242,7 @@ data.") (commit (string-append "V_" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "184fqmsfzr3b333ssizjk6gvv7mncmygq8dj5r7rsvs5md26z2ys")))) + (base32 "1ckadklk67dp1pvkacfkr8379g2pwk73q85jfzm8viclcqmfvb62")))) (build-system qt-build-system) (native-inputs (list pkg-config qttools-5)) -- cgit v1.2.3