[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/10: gnu: Add go-github-com-klauspost-pgzip.
From: |
guix-commits |
Subject: |
07/10: gnu: Add go-github-com-klauspost-pgzip. |
Date: |
Sat, 16 Mar 2024 20:11:26 -0400 (EDT) |
sharlatan pushed a commit to branch master
in repository guix.
commit d7e6c3cae0762d6a299162f2d7d8c44ca1390dd7
Author: Troy Figiel <troy@troyfigiel.com>
AuthorDate: Fri Mar 8 15:10:53 2024 +0100
gnu: Add go-github-com-klauspost-pgzip.
* gnu/packages/golang-compression.scm (go-github-com-klauspost-pgzip): New
variable.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
gnu/packages/golang-compression.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang-compression.scm
b/gnu/packages/golang-compression.scm
index b999c063ee..504491e8e0 100644
--- a/gnu/packages/golang-compression.scm
+++ b/gnu/packages/golang-compression.scm
@@ -140,6 +140,33 @@ library included in the stdlib, and supports GIF, TIFF and
PDF.")
(description "@code{compress} provides various compression algorithms.")
(license license:bsd-3)))
+(define-public go-github-com-klauspost-pgzip
+ (package
+ (name "go-github-com-klauspost-pgzip")
+ (version "1.2.6")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/klauspost/pgzip")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1j29wr6nd9ncdbkjphyziv0h8p5s2mj222cgcfqxmzjnfn7623d8"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/klauspost/pgzip"))
+ (propagated-inputs (list go-github-com-klauspost-compress))
+ (home-page "https://github.com/klauspost/pgzip")
+ (synopsis "Parallel (de)compression of gzip files in Go")
+ (description
+ "This package implements parallel gzip compression and decompression in
+Golang and is fully compatible with @code{compress/gzip} from the standard
+library. This is beneficial for large amounts of data, say more than 1MB at a
+time, as otherwise the internal gzip library will likely be faster.")
+ (license (list license:bsd-3 license:expat))))
+
(define-public go-github-com-nwaples-rardecode-v2
(package
(name "go-github-com-nwaples-rardecode-v2")
- branch master updated (4fe9aae225 -> 6fda9cfd0f), guix-commits, 2024/03/16
- 03/10: gnu: Add go-github-com-jbenet-go-temp-err-catcher., guix-commits, 2024/03/16
- 07/10: gnu: Add go-github-com-klauspost-pgzip.,
guix-commits <=
- 06/10: gnu: Add go-github-com-alexliesenfeld-health., guix-commits, 2024/03/16
- 05/10: gnu: Add go-github-com-whyrusleeping-go-sysinfo., guix-commits, 2024/03/16
- 10/10: gnu: Add go-github-com-josharian-intern., guix-commits, 2024/03/16
- 08/10: gnu: go-github-com-ulikunitz-xz: Update to 0.5.11., guix-commits, 2024/03/16
- 04/10: gnu: Add go-github-com-jbenet-go-random., guix-commits, 2024/03/16
- 01/10: gnu: Add go-github-com-jbenet-go-cienv., guix-commits, 2024/03/16
- 02/10: gnu: Add go-github-com-jbenet-goprocess., guix-commits, 2024/03/16
- 09/10: gnu: go-github-com-ulikunitz-xz: Refresh package style., guix-commits, 2024/03/16