[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/22: gnu: Add go-github-com-saracen-zipextra.
From: |
guix-commits |
Subject: |
07/22: gnu: Add go-github-com-saracen-zipextra. |
Date: |
Thu, 2 Jan 2025 18:14:25 -0500 (EST) |
sharlatan pushed a commit to branch go-team
in repository guix.
commit 45301628f2613431af6638ae62c219f801d224c3
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Thu Jan 2 20:49:56 2025 +0000
gnu: Add go-github-com-saracen-zipextra.
* gnu/packages/golang-compression.scm (go-github-com-saracen-zipextra): New
variable.
Change-Id: I486302459e7bac7f919f0338ede1af1371a9db90
---
gnu/packages/golang-compression.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/golang-compression.scm
b/gnu/packages/golang-compression.scm
index f73b1c1195..bdb9624c88 100644
--- a/gnu/packages/golang-compression.scm
+++ b/gnu/packages/golang-compression.scm
@@ -393,6 +393,37 @@ LZ4 data blocks. The implementation is based on the
reference C
go-github-com-pierrec-cmdflag
go-github-com-schollz-progressbar-v3))))
+(define-public go-github-com-saracen-zipextra
+ (package
+ (name "go-github-com-saracen-zipextra")
+ (version "0.0.0-20220303013732-0187cb0159ea")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/saracen/zipextra")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0j24jdi5495nfq08xm6yjr9s32z13x6y961ry1ihhhgi6s8zdddj"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/saracen/zipextra"
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'remove-examples
+ (lambda* (#:key tests? import-path #:allow-other-keys)
+ (with-directory-excursion (string-append "src/" import-path)
+ (delete-file "zipextra_example_test.go")))))))
+ (home-page "https://github.com/saracen/zipextra")
+ (synopsis "Encoding and decoding ZIP archive format's \"Extra Fields\"")
+ (description
+ "This package provides a library for encoding and decoding ZIP archive
+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-ulikunitz-xz
(package
(name "go-github-com-ulikunitz-xz")
- 16/22: gnu: go-github-com-rivo-tview: Move to golang-xyz., (continued)
- 16/22: gnu: go-github-com-rivo-tview: Move to golang-xyz., guix-commits, 2025/01/02
- 19/22: gnu: Remove go-github-com-whyrusleeping-tar-utils., guix-commits, 2025/01/02
- 09/22: gnu: Add go-github-com-saracen-fastzip., guix-commits, 2025/01/02
- 15/22: gnu: go-github-com-rivo-tview: Update to 0.0.0-20241227133733-17b7edb88c57., guix-commits, 2025/01/02
- 17/22: gnu: go-github-com-gdamore-encoding: Update to 1.0.1., guix-commits, 2025/01/02
- 14/22: gnu: go-github-com-rivo-uniseg: Move to golang-xyz., guix-commits, 2025/01/02
- 11/22: gnu: go-github-com-containerd-console: Update to 1.0.4., guix-commits, 2025/01/02
- 21/22: gnu: go-github-com-twmb-murmur3: Update to 1.1.8., guix-commits, 2025/01/02
- 20/22: gnu: Remove go-github-com-libp2p-go-libp2p-protocol., guix-commits, 2025/01/02
- 22/22: gnu: go-github-com-twmb-murmur3: Move to golang-crypto., guix-commits, 2025/01/02
- 07/22: gnu: Add go-github-com-saracen-zipextra.,
guix-commits <=