1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add go-github-com-containerd-stargz-snapshotter-estargz.

* gnu/packages/golang-compression.scm (go-github-com-containerd-stargz-snapshotter-estargz): New variable.

Change-Id: I2c75e862bee5b4efe1c829983a258173718d7e90
Reviewed-by: Arthur Rodrigues <arthurhdrodrigues@proton.me>
This commit is contained in:
Sharlatan Hellseher
2025-10-22 22:07:10 +01:00
parent 5b31d6beab
commit 95e9eafe8a

View File

@@ -67,6 +67,38 @@ the @code{c2go} tool at
@url{https://github.com/andybalholm/c2go,https://github.com/andybalholm/c2go}.")
(license license:expat)))
(define-public go-github-com-containerd-stargz-snapshotter-estargz
(package
(name "go-github-com-containerd-stargz-snapshotter-estargz")
(version "0.18.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/containerd/stargz-snapshotter")
(commit (go-version->git-ref version
#:subdir "estargz"))))
(file-name (git-file-name name version))
(sha256
(base32 "0058acl307d8gkkp0iyd9w290kwixi9362ji48azl5cp7mx4l27f"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/containerd/stargz-snapshotter/estargz"
#:unpack-path "github.com/containerd/stargz-snapshotter"))
(propagated-inputs
(list go-github-com-klauspost-compress
go-github-com-opencontainers-go-digest
go-github-com-vbatts-tar-split
go-golang-org-x-sync))
(home-page "https://github.com/containerd/stargz-snapshotter")
(synopsis "Reader/writer library for eStargz container image format")
(description
"This package implements reader/writer library
@url{https://github.com/containerd/stargz-snapshotter/blob/v0.18.0/docs/estargz.md,
eStargz} - a lazily-pullable image format.")
(license license:asl2.0)))
(define-public go-github-com-datadog-zstd
(package
(name "go-github-com-datadog-zstd")