diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2024-07-15 23:04:20 +0300 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-18 23:12:37 +0100 |
commit | 524abb647406b8a0c8606465c14d1b0b648d5b94 (patch) | |
tree | 8c280f75fabc2fcb2ac011d6237bedc583f40e59 /gnu | |
parent | 70302e45f7dfa652fa4049138f7873aa6489b972 (diff) | |
download | guix-524abb647406b8a0c8606465c14d1b0b648d5b94.tar.gz guix-524abb647406b8a0c8606465c14d1b0b648d5b94.zip |
gnu: Add go-github-com-ipfs-go-ipld-legacy.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-ipld-legacy): New variable.
Change-Id: I70afb1bb7b1fcc0db477db05c9c82548a2c39285
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ipfs.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index 56bfe5a3f4..709d460144 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -366,6 +366,36 @@ IPLD graph as detailed below. Objects are demonstrated here using both order to be a part of the @acronym{IPLD, InterPlanetary Linked Data} merkle-forest.") (license license:expat))) +(define-public go-github-com-ipfs-go-ipld-legacy + (package + (name "go-github-com-ipfs-go-ipld-legacy") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ipfs/go-ipld-legacy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0sc2zc3lyxy30fzynwdpfrl8jhh1ynwixn1crrv8hzn93yix6550")))) + (build-system go-build-system) + (arguments + (list + #:go go-1.21 + #:import-path "github.com/ipfs/go-ipld-legacy")) + (native-inputs (list go-github-com-stretchr-testify)) + (propagated-inputs (list go-github-com-ipfs-go-block-format + go-github-com-ipfs-go-cid + go-github-com-ipfs-go-ipld-format + go-github-com-ipld-go-ipld-prime)) + (home-page "https://github.com/ipfs/go-ipld-legacy") + (synopsis "Translation layer for IPLD legacy code") + (description + "@code{go-ipld-format} is a translation layer between @code{go-ipld-prime} nodes +and @code{go-ipld-format} legacy interface.") + (license (list license:expat license:asl2.0)))) + (define-public go-github-com-ipld-go-ipld-prime (package (name "go-github-com-ipld-go-ipld-prime") |