mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add go-github-com-willf-bloom.
* gnu/packages/golang.scm (go-github-com-willf-bloom): New variable.
This commit is contained in:
parent
88841a3ead
commit
79405c030f
1 changed files with 25 additions and 0 deletions
|
@ -3417,3 +3417,28 @@ are a mapping between non-negative integers and boolean values focused on
|
||||||
efficient space usage.")
|
efficient space usage.")
|
||||||
(home-page "https://github.com/willf/bitset")
|
(home-page "https://github.com/willf/bitset")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-willf-bloom
|
||||||
|
(package
|
||||||
|
(name "go-github-com-willf-bloom")
|
||||||
|
(version "2.0.3")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/willf/bloom")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0ygan8pgcay7wx3cs3ja8rdqj7nly7v3and97ddcc66020jxchzg"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/willf/bloom"))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("go-github-com-spaolacci-murmur3" ,go-github-com-spaolacci-murmur3)
|
||||||
|
("go-github-com-willf-bitset" ,go-github-com-willf-bitset)))
|
||||||
|
(synopsis "Bloom filters in Go")
|
||||||
|
(description "This package provides a Go implementation of bloom filters,
|
||||||
|
based on murmurhash.")
|
||||||
|
(home-page "https://github.com/willf/bloom")
|
||||||
|
(license license:bsd-2)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue