From 79cffdc00fa8d64fda006fcf988777d95f8410eb Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Thu, 5 Feb 2026 05:54:44 +0100 Subject: [PATCH] gnu: Add libmo-unpack. * gnu/packages/geo.scm (libmo-unpack): New variable. Change-Id: I7f157a0949e4022b7ad20635119e906ab005fb0f Signed-off-by: Sharlatan Hellseher --- gnu/packages/geo.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index fbb1437576..dbae2617a8 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -2603,6 +2603,29 @@ persisted. ") (license license:expat))) +(define-public libmo-unpack + (package + (name "libmo-unpack") + (version "3.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/SciTools/libmo_unpack") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14das3rrha3mlw1p57nn67sg22yig0jnmf86w8jqvj98v06f5xl3")))) + (build-system cmake-build-system) + (arguments (list #:out-of-source? #t)) + (native-inputs (list cmake-minimal check)) + (home-page "https://github.com/SciTools/libmo_unpack") + (synopsis "Handle WGDOS and RLE compression schemes") + (description + "This package provides a library for handling the WGDOS and RLE +compression schemes used in UM files.") + (license license:bsd-3))) + (define-public libmseed (package (name "libmseed")