me
/
guix
Archived
1
0
Fork 0

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

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

Change-Id: If5b5d486f50f82750a5b11a3248a3aaa2ed91658
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
master
Artyom V. Poptsov 2024-07-20 18:33:52 +03:00 committed by Sharlatan Hellseher
parent 1090834a3d
commit 58a92c6146
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 25 additions and 0 deletions

View File

@ -41,6 +41,31 @@
#:use-module (gnu packages shells)
#:use-module (gnu packages specifications))
(define-public go-github-com-ipfs-bbloom
(package
(name "go-github-com-ipfs-bbloom")
(version "0.0.4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ipfs/bbloom")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0dcdn7nlysynl7yrbivv8m7j83jq7pabhcff8mvfjdk583rgnkp2"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/ipfs/bbloom"))
(home-page "https://github.com/ipfs/bbloom")
(synopsis "Fast bit set Bloom filter")
(description
"This package implements a fast bloom filter with real @code{bitset} and
JSONMarshal/JSONUnmarshal to store/reload the Bloom filter.")
(license (list license:expat ; bbloom.go
license:public-domain)))) ; siphash.go
(define-public go-github-com-ipfs-go-block-format
(package
(name "go-github-com-ipfs-go-block-format")