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
This commit is contained in:
Sharlatan Hellseher 2025-09-11 12:30:56 +01:00
parent e75833ff8d
commit 82121b3572
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 29 additions and 28 deletions

View file

@ -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")