gnu: Add go-github-com-andreasbriese-bbloom.

* gnu/packages/golang-xyz.scm (go-github-com-andreasbriese-bbloom): New variable.

Change-Id: Ibde8dc90c4db2519be8de0b9b0b770fff1a1ca02
This commit is contained in:
Sharlatan Hellseher 2024-09-07 16:39:04 +01:00
parent e7d875d56d
commit 2665514929
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -823,6 +823,33 @@ (define-public go-github-com-alecthomas-units
"This library provides unit multipliers and functions for Go.")
(license license:expat))))
(define-public go-github-com-andreasbriese-bbloom
(package
(name "go-github-com-andreasbriese-bbloom")
(version "0.0.0-20190825152654-46b345b51c96")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/AndreasBriese/bbloom")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "021c0pl7r4pc9yslqhbjg9wr6dm03lnzf94a0b9c0hmg0bhhkln9"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/AndreasBriese/bbloom"))
(home-page "https://github.com/AndreasBriese/bbloom")
(synopsis "Bitset Bloom filter for Golang")
(description
"This package implements a fast bloom filter with real @code{bitset} and
JSONMarshal/JSONUnmarshal to store/reload the Bloom filter.")
;; XXX: It may be included to guix licenses: CC0 1.0 UNIVERSAL
;; <http://creativecommons.org/publicdomain/zero/1.0/>
;; Dual licence: MIT (Expat) and CC0 1.0 UNIVERSAL.
(license license:expat)))
(define-public go-github-com-anmitsu-go-shlex
(package
(name "go-github-com-anmitsu-go-shlex")