From 06251ce90cc6b75baa2260dc0cccacc9d4ddfb48 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 11 Sep 2025 12:33:25 +0100 Subject: [PATCH] gnu: go-github-com-libp2p-go-doh-resolver: Move to ipfs. * gnu/packages/golang-web.scm (go-github-com-libp2p-go-doh-resolver): Move from here ... * gnu/packages/ipfs.scm: ... to here. Change-Id: I18b4ed7a1549755a3a7618823b0fe492c2914afb --- gnu/packages/golang-web.scm | 30 ------------------------------ gnu/packages/ipfs.scm | 30 ++++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 39f2a1ebce85e78b8aee424c26a09442f51213f8..2742ebd2fefef215770b2f0fad5a0d458ba2131c 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -6232,36 +6232,6 @@ to delete records. @end itemize") (license license:expat))) -(define-public go-github-com-libp2p-go-doh-resolver - (package - (name "go-github-com-libp2p-go-doh-resolver") - (version "0.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/libp2p/go-doh-resolver") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0asni7f3gd65bjfqz99fqchz9y75cpgmfwkkhsbq0y2dydagw666")))) - (build-system go-build-system) - (arguments - (list - #:import-path "github.com/libp2p/go-doh-resolver")) - (native-inputs - (list go-github-com-stretchr-testify)) - (propagated-inputs - (list go-github-com-ipfs-go-log-v2 - go-github-com-miekg-dns - go-github-com-multiformats-go-multiaddr-dns)) - (home-page "https://github.com/libp2p/go-doh-resolver") - (synopsis "DNS over HTTPS resolver") - (description - "This package provides an implementation DNS over HTTPS resolver as -specified in @url{https://datatracker.ietf.org/doc/html/rfc8484, RFC 8484}.") - (license license:expat))) - (define-public go-github-com-libp2p-go-flow-metrics (package (name "go-github-com-libp2p-go-flow-metrics") diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index 1830f6048bc2e973b707d755968b25d0122e7189..ed94ee43c091659f76f04137c6ae3084c40ed475 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -1854,6 +1854,36 @@ from published cloud provider CIDR blocks (e.g. 52.95.110.1 is contained in published AWS Route53 CIDR 52.95.110.0/24), IP routing rules, etc.") (license license:expat))) +(define-public go-github-com-libp2p-go-doh-resolver + (package + (name "go-github-com-libp2p-go-doh-resolver") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/libp2p/go-doh-resolver") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0asni7f3gd65bjfqz99fqchz9y75cpgmfwkkhsbq0y2dydagw666")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/libp2p/go-doh-resolver")) + (native-inputs + (list go-github-com-stretchr-testify)) + (propagated-inputs + (list go-github-com-ipfs-go-log-v2 + go-github-com-miekg-dns + go-github-com-multiformats-go-multiaddr-dns)) + (home-page "https://github.com/libp2p/go-doh-resolver") + (synopsis "DNS over HTTPS resolver") + (description + "This package provides an implementation DNS over HTTPS resolver as +specified in @url{https://datatracker.ietf.org/doc/html/rfc8484, RFC 8484}.") + (license license:expat))) + (define-public go-github-com-libp2p-go-libp2p (package (name "go-github-com-libp2p-go-libp2p")