diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-26 00:01:53 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-26 00:02:00 +0100 |
commit | d921b7eb09c4128e4826f0a9ef98ddae27224c71 (patch) | |
tree | 6e6e9b109cdc8e3a6d5b16251aec47f12212ee0d | |
parent | 98aff70c69f16e9c27d557389354a767cc8c994d (diff) | |
download | guix-d921b7eb09c4128e4826f0a9ef98ddae27224c71.tar guix-d921b7eb09c4128e4826f0a9ef98ddae27224c71.tar.gz |
gnu: Remove go-github-com-multiformats-go-multiaddr-net.
Deprecated: "This repository has been archived by the owner on Oct 5,
2021. It is now read-only. This package has moved into go-multiaddr as
a sub-package, github.com/multiformats/go-multiaddr/net."
* gnu/packages/golang-web.scm (go-github-com-multiformats-go-multiaddr-net): Delete variable.
Change-Id: Ifb6c4471cab36c1363607896a99bb020b9c21cec
-rw-r--r-- | gnu/packages/golang-web.scm | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 53eb235640..c3fd57bb55 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -3017,42 +3017,6 @@ validators for common address types are provided, but creating your own combinations is easy.") (license license:expat))) -(define-public go-github-com-multiformats-go-multiaddr-net - ;; This commit is from <2018-10-01> and associated with GX package manager, - ;; since that time the project has changed versing stile and GX is dropped. - ;; The latest versioned tag is v0.1.5 <2020-04-30>. The project is archved - ;; on <2021-10-05>. - (let ((commit "1cb9a0e8a6de3c8a10f6cee60d01d793603c4f7e") - (revision "0")) - (package - (name "go-github-com-multiformats-go-multiaddr-net") - (version (git-version "1.6.3" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/multiformats/go-multiaddr-net") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ypgi47xdz3bh8lh7f8cmk7w3ql9g4izx5l3kzdg9gda1xn5zxq3")))) - (build-system go-build-system) - (arguments - (list - ;; TODO: Tests fail because they try to access the network. - #:tests? #f - #:import-path "github.com/multiformats/go-multiaddr-net")) - (propagated-inputs - (list go-github-com-multiformats-go-multiaddr)) - (home-page "https://github.com/multiformats/go-multiaddr-net") - (synopsis "Multiaddress net tools") - (description - "This package provides Multiaddr specific versions of common functions -in stdlib's @command{net} package. This means wrappers of standard net -symbols like @command{net.Dial} and @command{net.Listen}, as well as -conversion to and from @command{net.Addr}.") - (license license:expat)))) - (define-public go-github-com-multiformats-go-multistream (package (name "go-github-com-multiformats-go-multistream") |