diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2024-06-12 08:37:43 +0300 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-17 22:55:55 +0100 |
commit | 4797bbb12c7c7c93ce6fa6267b46816b6d239f86 (patch) | |
tree | 250d37a17e387d221eb591edd2f9a3333f3c7fdd /gnu | |
parent | 7e0e15928d7fae0744dcbf816ff4450f8badbbf3 (diff) | |
download | guix-4797bbb12c7c7c93ce6fa6267b46816b6d239f86.tar.gz guix-4797bbb12c7c7c93ce6fa6267b46816b6d239f86.zip |
gnu: Add go-github-com-ipfs-go-block-format.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-block-format): New variable.
Change-Id: I1120be12ff6c10149e227d679c1c532cb3548a5c
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ipfs.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index a44c4b0139..6df340e402 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -38,6 +38,38 @@ #:use-module (gnu packages python) #:use-module (gnu packages shells)) +(define-public go-github-com-ipfs-go-block-format + (package + (name "go-github-com-ipfs-go-block-format") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ipfs/go-block-format") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pd8ww06ss922g3w2fgi3w0q66y2mkb9b2q9x5qxabrjj65xranz")))) + (build-system go-build-system) + (arguments + (list + #:go go-1.21 + #:import-path "github.com/ipfs/go-block-format")) + (propagated-inputs + (list go-github-com-multiformats-go-multihash + go-github-com-multiformats-go-varint + go-github-com-ipfs-go-cid + go-github-com-ipfs-go-ipfs-util)) + (home-page "https://github.com/ipfs/go-block-format") + (synopsis "Set of interfaces for CID addressable blocks of data") + (description + "Package @code{blocks} contains the lowest level of @acronym{IPLD, +InterPlanetary Linked Data} data structures. A block is raw data accompanied +by a @acronym{Content Identifiers,CID}. The CID contains the multihash +corresponding to the block.") + (license license:expat))) + (define-public go-github-com-ipfs-go-cid (package (name "go-github-com-ipfs-go-cid") |