guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 89428db3fce002fec27d04829e95c16ced569eb7
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 14 22:02:50 2026 +0000

    gnu: Add go-github-com-starry-s-zip.
    
    * gnu/packages/golang-compression.scm (go-github-com-starry-s-zip): New 
variable.
    
    Change-Id: I6385e010de8bceea366a766c3506cbdfbe2b8bbb
---
 gnu/packages/golang-compression.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang-compression.scm 
b/gnu/packages/golang-compression.scm
index e6b810f4c9..69bd5a3a7a 100644
--- a/gnu/packages/golang-compression.scm
+++ b/gnu/packages/golang-compression.scm
@@ -656,6 +656,32 @@ format's \"Extra Fields\".  The intention is to eventually 
support and provide
 a low-level API for the majority of PKWARE's and Info-ZIP's extra fields.")
     (license license:expat)))
 
+(define-public go-github-com-starry-s-zip
+  (package
+    (name "go-github-com-starry-s-zip")
+    (version "0.2.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/STARRY-S/zip";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1n3ynxx6dmwvgfwfv0il3s8m40wdssip400rp20rb23vq6kk4fsr"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/STARRY-S/zip"
+      ;; updater_test.go:260: open /var/tmp/test-0-846075180.iso: no such file
+      ;; or directory
+      #:test-flags #~(list "-skip" "TestUpdaterOverwriteZip64")))
+    (home-page "https://github.com/STARRY-S/zip";)
+    (synopsis "Go zip library")
+    (description
+     "Package zip provides support for reading and writing ZIP archives.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-ulikunitz-xz
   (package
     (name "go-github-com-ulikunitz-xz")

Reply via email to