Archived
1
0
Fork 0

gnu: Add go-github-com-willf-bloom.

* gnu/packages/golang.scm (go-github-com-willf-bloom): New variable.
This commit is contained in:
Leo Famulari 2020-03-02 15:13:16 -05:00
parent 88841a3ead
commit 79405c030f
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -3417,3 +3417,28 @@ are a mapping between non-negative integers and boolean values focused on
efficient space usage.")
(home-page "https://github.com/willf/bitset")
(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)))