mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Add go-github-com-saracen-zipextra.
* gnu/packages/golang-compression.scm (go-github-com-saracen-zipextra): New variable. Change-Id: I486302459e7bac7f919f0338ede1af1371a9db90
This commit is contained in:
parent
c6c131f493
commit
e07ad70dc2
1 changed files with 31 additions and 0 deletions
|
@ -393,6 +393,37 @@ (define-public go-github-com-pierrec-lz4-v4
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue