diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-19 20:53:09 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-26 16:50:13 +0100 |
| commit | d78c2eef1a6542fbdbf50e2acbbbfaf18e38a8c7 (patch) | |
| tree | c390254689266d5a48805005172de77c7446c1d7 /gnu/packages/ipfs.scm | |
| parent | 5b3e6263e767b93e282fc8b62b362a02e8606e2b (diff) | |
gnu: Add go-github-com-ipfs-go-test.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-test): New variable.
Change-Id: I20bad0773e656b97b0f260d776ab8b9e9c6673b0
Diffstat (limited to 'gnu/packages/ipfs.scm')
| -rw-r--r-- | gnu/packages/ipfs.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index a67cfb06b84..fa18bc6398a 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -905,6 +905,39 @@ and @code{go-ipld-format} legacy interface.") tasks distributed among peers.") (license (list license:asl2.0 license:expat)))) +(define-public go-github-com-ipfs-go-test + (package + (name "go-github-com-ipfs-go-test") + (version "0.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ipfs/go-test") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h2lns6xl874m175l692qwsrwrv7jcx54ncqygjy9l3910ny2dg2")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/ipfs/go-test")) + (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-libp2p-go-libp2p + go-github-com-multiformats-go-multiaddr + go-github-com-multiformats-go-multicodec + go-github-com-multiformats-go-multihash)) + (home-page "https://github.com/ipfs/go-test") + (synopsis "Testing utilty library for IPFS") + (description + "This package profides a test utility code used across many different +IPFS related projects.") + (license (list license:asl2.0 license:expat)))) + ;; XXX: This repository has been archived by the owner on Jun 20, 2023. It is ;; now read-only. We highly recommend switching to the maintained version at ;; https://github.com/ipfs/boxo/tree/main/verifcid. It's still in use by some |
