guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 3d4e286644f42617401c3d804e879c18bd14f9d3
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Feb 5 05:54:44 2026 +0100

    gnu: Add libmo-unpack.
    
    * gnu/packages/geo.scm (libmo-unpack): New variable.
    
    Change-Id: I7f157a0949e4022b7ad20635119e906ab005fb0f
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 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")

Reply via email to