me
/
guix
Archived
1
0
Fork 0

gnu: Add go-github-com-valyala-bytebufferpool.

* gnu/packages/golang.scm (go-github-com-valyala-bytebufferpool): New
variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Sharlatan Hellseher 2022-01-28 10:45:33 +01:00 committed by Nicolas Goaziou
parent 72274434a8
commit 1d948dbd97
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 23 additions and 0 deletions

View File

@ -8906,6 +8906,29 @@ non-cryptographic hash algorithm, working at speeds close to RAM limits.")
"Provides a platform-independent way to get atime, mtime, ctime and btime for files.")
(license license:expat)))
(define-public go-github-com-valyala-bytebufferpool
(package
(name "go-github-com-valyala-bytebufferpool")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/valyala/bytebufferpool")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "01lqzjddq6kz9v41nkky7wbgk7f1cw036sa7ldz10d82g5klzl93"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/valyala/bytebufferpool"))
(home-page "https://github.com/valyala/bytebufferpool")
(synopsis "Anti-memory-waste byte buffer pool for Golang")
(description
"@code{bytebufferpool} implements a pool of byte buffers with
anti-fragmentation protection.")
(license license:expat)))
(define-public go-github-com-vmihailenco-msgpack-v4
(package
(name "go-github-com-vmihailenco-msgpack-v4")