diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2024-07-20 18:33:51 +0300 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-22 23:13:43 +0100 |
commit | 1090834a3dc25c16648abde659fed5435e2dc703 (patch) | |
tree | 8d7a010ccba23a6edae3025719058173a65ef2e2 | |
parent | 2053b36e5c4b187357443ded7fcd03139507a23e (diff) | |
download | guix-1090834a3dc25c16648abde659fed5435e2dc703.tar.gz guix-1090834a3dc25c16648abde659fed5435e2dc703.zip |
gnu: Add go-github-com-ipfs-go-ipfs-exchange-interface.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-ipfs-exchange-interface): New variable.
Change-Id: I5931d32952e021a29073227acc9fff5a87bbebf9
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/ipfs.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index 08f88ef3e4..8a315bf5fe 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -273,6 +273,32 @@ throughout its lifetime.") (description "Check if the race detector is running.") (license license:expat))) +(define-public go-github-com-ipfs-go-ipfs-exchange-interface + (package + (name "go-github-com-ipfs-go-ipfs-exchange-interface") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ipfs/go-ipfs-exchange-interface") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h5jizhjq4yz9sikqc6yhv5gsb8fgv67v0qjzagyhfznfx8kwv1d")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/ipfs/go-ipfs-exchange-interface")) + (propagated-inputs + (list go-github-com-ipfs-go-block-format + go-github-com-ipfs-go-cid)) + (home-page "https://github.com/ipfs/go-ipfs-exchange-interface") + (synopsis "The IPFS Exchange interface") + (description + "@code{go-ipfs-exchange-interface} defines the IPFS exchange interface.") + (license license:expat))) + (define-public go-github-com-ipfs-go-ipfs-util (package (name "go-github-com-ipfs-go-ipfs-util") |