guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 82121b357289507cdfd6035f71b3406250d1c84d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Sep 11 12:30:56 2025 +0100
gnu: go-github-com-ipfs-go-cid: Move to golang-web.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-cid): Move from here ...
* gnu/packages/golang-web.scm: ... to here.
Change-Id: Iea8fc418f2b4e479f453ac63a27d97e3e203e13f
---
gnu/packages/golang-web.scm | 29 +++++++++++++++++++++++++++++
gnu/packages/ipfs.scm | 28 ----------------------------
2 files changed, 29 insertions(+), 28 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index fe1b455d41..39f2a1ebce 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -5154,6 +5154,35 @@ dhcpv6 and dhcpv4
@end itemize")
(license license:bsd-3)))
+(define-public go-github-com-ipfs-go-cid
+ (package
+ (name "go-github-com-ipfs-go-cid")
+ (version "0.4.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ipfs/go-cid")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0gfd5dg0shj2daraai2kkf8sg24jp5cr6dsv857wp4q1ni612a23"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/ipfs/go-cid"))
+ (propagated-inputs
+ (list go-github-com-multiformats-go-multihash
+ go-github-com-multiformats-go-multibase
+ go-github-com-multiformats-go-varint))
+ (home-page "https://github.com/ipfs/go-cid")
+ (synopsis "Content ID v1 implemented in Go")
+ (description
+ "Implementation in Go of the @url{https://github.com/ipld/cid, CID spec}.
+It is used in @code{go-ipfs} and related packages to refer to a typed hunk of
+data.")
+ (license license:expat)))
+
(define-public go-github-com-jackpal-gateway
(package
(name "go-github-com-jackpal-gateway")
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm
index 645d1469c6..1830f6048b 100644
--- a/gnu/packages/ipfs.scm
+++ b/gnu/packages/ipfs.scm
@@ -375,34 +375,6 @@ provides a single @code{GetBlock/AddBlock} interface that
seamlessly retrieves
data either locally or from a remote peer through the exchange.")
(license license:expat)))
-(define-public go-github-com-ipfs-go-cid
- (package
- (name "go-github-com-ipfs-go-cid")
- (version "0.4.1")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/ipfs/go-cid")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0gfd5dg0shj2daraai2kkf8sg24jp5cr6dsv857wp4q1ni612a23"))))
- (build-system go-build-system)
- (arguments
- (list
- #:import-path "github.com/ipfs/go-cid"))
- (propagated-inputs
- (list go-github-com-multiformats-go-multihash
- go-github-com-multiformats-go-multibase
- go-github-com-multiformats-go-varint))
- (home-page "https://github.com/ipfs/go-cid")
- (synopsis "Content ID v1 implemented in Go")
- (description
- "Implementation in Go of the @url{https://github.com/ipld/cid, CID spec}.
It is
-used in @code{go-ipfs} and related packages to refer to a typed hunk of data.")
- (license license:expat)))
-
(define-public go-github-com-ipfs-go-cidutil
(package
(name "go-github-com-ipfs-go-cidutil")