diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-02-05 05:54:44 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:58 +0100 |
| commit | 79cffdc00fa8d64fda006fcf988777d95f8410eb (patch) | |
| tree | 5a2cd7ad1e311cb0a9b8bcfb3466d5f05de9ee9f | |
| parent | 9999f19742cedf25f451e13aa0771fdc96a073da (diff) | |
gnu: Add libmo-unpack.
* gnu/packages/geo.scm (libmo-unpack): New variable.
Change-Id: I7f157a0949e4022b7ad20635119e906ab005fb0f
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/geo.scm | 23 |
1 files changed, 23 insertions, 0 deletions
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") |
