mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add go-github-com-ipfs-go-ipld-cbor.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-ipld-cbor): New variable. Change-Id: I1a85366eb558fe3043fe39d8aabd4bf14f98a32a Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
c6fae8a300
commit
ff1bb647b5
1 changed files with 32 additions and 0 deletions
|
@ -270,6 +270,38 @@ throughout its lifetime.")
|
||||||
"Common utilities used by @code{go-ipfs} and other related Go packages.")
|
"Common utilities used by @code{go-ipfs} and other related Go packages.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-ipfs-go-ipld-cbor
|
||||||
|
(package
|
||||||
|
(name "go-github-com-ipfs-go-ipld-cbor")
|
||||||
|
(version "0.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/ipfs/go-ipld-cbor")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0yxk4sbf1fk9aaizzpz3h30049wqvaz0s3jnbdd5akhj7wg89h21"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:go go-1.21
|
||||||
|
#:import-path "github.com/ipfs/go-ipld-cbor"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-ipfs-go-block-format
|
||||||
|
go-github-com-ipfs-go-cid
|
||||||
|
go-github-com-ipfs-go-ipfs-util
|
||||||
|
go-github-com-ipfs-go-ipld-format
|
||||||
|
go-github-com-multiformats-go-multihash
|
||||||
|
go-github-com-polydawn-refmt
|
||||||
|
go-github-com-whyrusleeping-cbor-gen))
|
||||||
|
(home-page "https://github.com/ipfs/go-ipld-cbor")
|
||||||
|
(synopsis "A cbor implementation of the @code{go-ipld-format}")
|
||||||
|
(description
|
||||||
|
"An implementation of a @url{https://cbor.io/, CBOR} encoded merkledag object.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-ipfs-go-ipld-format
|
(define-public go-github-com-ipfs-go-ipld-format
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-ipfs-go-ipld-format")
|
(name "go-github-com-ipfs-go-ipld-format")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue