1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-07 05:30:38 +02:00

gnu: Add libmo-unpack.

* gnu/packages/geo.scm (libmo-unpack): New variable.

Change-Id: I7f157a0949e4022b7ad20635119e906ab005fb0f
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves
2026-02-05 05:54:44 +01:00
committed by Andreas Enge
parent 9999f19742
commit 79cffdc00f

View File

@@ -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")