diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-14 02:23:06 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-15 14:17:43 +0100 |
| commit | ef29082de5dcc5fbc204e922fcfd70fac20c50aa (patch) | |
| tree | 9493c7360627d35d384e25d6a4099f91be0dfb74 /gnu | |
| parent | 216c89785ddb2bf88fed9986ba2a604335c33939 (diff) | |
gnu: Add go-github-com-minio-minlz.
* gnu/packages/golang-compression.scm (go-github-com-minio-minlz): New variable.
Change-Id: I0df273e5c354e24bd6b13b92da71e23428fc73f0
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-compression.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-compression.scm b/gnu/packages/golang-compression.scm index 3c14ad23cf..e6b810f4c9 100644 --- a/gnu/packages/golang-compression.scm +++ b/gnu/packages/golang-compression.scm @@ -418,6 +418,32 @@ Supported archive formats: @end itemize") (license license:expat))) +(define-public go-github-com-minio-minlz + (package + (name "go-github-com-minio-minlz") + (version "1.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/minio/minlz") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m493zr2810p0zscpwnl0yp8nh8y9rkgahhgpz9k6aqi9nwwvmyz")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/minio/minlz")) + (propagated-inputs + (list go-github-com-klauspost-compress)) + (home-page "https://github.com/minio/minlz") + (synopsis "LZ77 compressor") + (description + "@code{MinLZ} is a LZ77-type compressor with a fixed byte-aligned +encoding, in the similar class to Snappy and LZ4.") + (license license:asl2.0))) + (define-public go-github-com-moby-go-archive (package (name "go-github-com-moby-go-archive") |
