mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add go-github-com-ipfs-go-bitfield.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-bitfield): New variable. Change-Id: I95e627fb5f4dfcca5e4b70e753b544b4965b96c2 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
71e1d0a437
commit
ac7b75d473
1 changed files with 24 additions and 0 deletions
|
@ -67,6 +67,30 @@ 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-bitfield
|
||||
(package
|
||||
(name "go-github-com-ipfs-go-bitfield")
|
||||
(version "1.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ipfs/go-bitfield")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1zhgwdg2kizhk0hb9q5p0pwrwldd2pacz8l1pnapxh6qm3fqs663"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/ipfs/go-bitfield"))
|
||||
(home-page "https://github.com/ipfs/go-bitfield")
|
||||
(synopsis "Allocated up-front Bitfield for Golang")
|
||||
(description
|
||||
"This package implements a functionality similar to standard
|
||||
@code{big.Int} with some optimizations to use in IPFS.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public go-github-com-ipfs-go-block-format
|
||||
(package
|
||||
(name "go-github-com-ipfs-go-block-format")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue