summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-02-14 22:02:50 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-15 18:06:16 +0000
commit89428db3fce002fec27d04829e95c16ced569eb7 (patch)
tree31069d6a7ad85fa21665e5f36833b4391df05b78 /gnu
parentbb610e86b61779df866387ae7bd1e6748b55bcdc (diff)
gnu: Add go-github-com-starry-s-zip.
* gnu/packages/golang-compression.scm (go-github-com-starry-s-zip): New variable. Change-Id: I6385e010de8bceea366a766c3506cbdfbe2b8bbb
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-compression.scm26
1 files changed, 26 insertions, 0 deletions
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")