guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 5ae5ced182bafe7f0b2b6d1644306f6e45e476bb
Author: Patrick Norton <[email protected]>
AuthorDate: Tue Jan 6 08:33:10 2026 -0500

    gnu: Add go-github-com-cavaliergopher-cpio.
    
    * gnu/packages/golang-compression.scm (go-github-com-cavaliergopher-cpio): 
New
    variable.
    
    Change-Id: I55faf4a19bd29ca16e73540517570518dc3bbf88
    Relates-to: guix/guix!5417
    Reviewed-by: Arthur Rodrigues <[email protected]>
    Modified-by: Sharlatan Hellseher <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-compression.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang-compression.scm 
b/gnu/packages/golang-compression.scm
index e8f1baa527..97aa57c5af 100644
--- a/gnu/packages/golang-compression.scm
+++ b/gnu/packages/golang-compression.scm
@@ -246,6 +246,31 @@ blocks allowing it to only read the compressed blocks 
required.")
     (license (list license:bsd-3
                    license:expat))))
 
+(define-public go-github-com-cavaliergopher-cpio
+  (package
+    (name "go-github-com-cavaliergopher-cpio")
+    (version "1.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/cavaliergopher/cpio";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0b1ix8z9kwfpwqi0q08ivcfcimlqk781jbzbfw7qbqavh702w3m2"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/cavaliergopher/cpio"))
+    (home-page "https://github.com/cavaliergopher/cpio";)
+    (synopsis "Readers and writers for CPIO archives")
+    (description
+     "This package provides readers and writers for CPIO archives.  Currently,
+only the SVR4 (New ASCII) format is supported, both with and without
+checksums.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-containerd-stargz-snapshotter-estargz
   (package
     (name "go-github-com-containerd-stargz-snapshotter-estargz")

Reply via email to