diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 6565116fab..eb5207da6a 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -13637,6 +13637,30 @@ distributable command line applications in an expressive way.") go-github-com-xrash-smetrics go-gopkg-in-yaml-v3)))) +(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 + (list + #: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-vburenin-ifacemaker (package (name "go-github-com-vburenin-ifacemaker") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 6c4ad2c607..5b575a9c6b 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3027,29 +3027,6 @@ That is, @code{gofumpt} is happy with a subset of the formats that (native-inputs '()) (inputs '()))) -(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-tagparser (package (name "go-github-com-vmihailenco-tagparser")