guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 3e61833ef728596ebe92d0360e9f9983fa16f483
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Tue Sep 15 18:25:18 2026 +0200
gnu: Add go-github-com-kkdai-bstream.
* gnu/packages/golang-xyz.scm (go-github-com-kkdai-bstream): New variable.
Relates-to: guix/guix!11226, guix/guix!11258
Reviewed-by: Orahcio FelĂcio de Sousa <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 4f6a1c2442b..5ab317862ce 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -19703,6 +19703,28 @@ memory limit.")
with the Go standard library's @code{database/sql} package.")
(license license:expat)))
+(define-public go-github-com-kkdai-bstream
+ (package
+ (name "go-github-com-kkdai-bstream")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kkdai/bstream")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "02brc58hhkkfhgb4yxjv3wshq355w533q7d49qrlfkhk265qph7w"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/kkdai/bstream"))
+ (home-page "https://github.com/kkdai/bstream")
+ (synopsis "Bit Stream helper in Go")
+ (description "This package provides bit stream helpers in Go.")
+ (license license:expat)))
+
(define-public go-github-com-klauspost-asmfmt
(package
(name "go-github-com-klauspost-asmfmt")