gnu: go-github-com-jcmturner-dnsutils-v2: Move to (gnu packages golang-web).

* gnu/packages/golang.scm (go-github-com-jcmturner-dnsutils-v2): Move from
here...
* gnu/packages/golang-web.scm: ...to here.

Change-Id: I65f87f8e8cd7970a15d3b1e09c5ef4202f0542db
This commit is contained in:
Sharlatan Hellseher 2023-11-29 22:34:55 +00:00 committed by Maxim Cournoyer
parent 88b168ed27
commit 1559310589
No known key found for this signature in database
GPG key ID: 1260E46482E63562
2 changed files with 28 additions and 27 deletions

View file

@ -286,6 +286,34 @@ (define-public go-github-com-gorilla-websocket
protocol.")
(license license:bsd-2)))
(define-public go-github-com-jcmturner-dnsutils-v2
(package
(name "go-github-com-jcmturner-dnsutils-v2")
(version "2.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jcmturner/dnsutils")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "116zbgvfj88vv93fnapmmgyd5g8kzy774cdyzsnnzyzng92j61c9"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/jcmturner/dnsutils/v2"))
(propagated-inputs
(list go-github-com-stretchr-testify))
(home-page "https://github.com/jcmturner/dnsutils")
(synopsis "Go library with DNS utils")
(description
"The dnsutils package provides a Go function to return a map of Service
Records (SRV) in the order they should be used for a given service, protocol
and name. The order is determined by the records' priority and randomized
selection based on their relative weighting. This package is useful for
network applications that require accessing services using SRV records.")
(license license:asl2.0)))
(define-public go-github-com-jcmturner-gokrb5-v8
(package
(name "go-github-com-jcmturner-gokrb5-v8")

View file

@ -1499,33 +1499,6 @@ (define-public go-github-com-jcmturner-aescts-v2
encryption and decryption methods.")
(license license:asl2.0)))
(define-public go-github-com-jcmturner-dnsutils-v2
(package
(name "go-github-com-jcmturner-dnsutils-v2")
(version "2.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jcmturner/dnsutils")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"116zbgvfj88vv93fnapmmgyd5g8kzy774cdyzsnnzyzng92j61c9"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/jcmturner/dnsutils/v2"))
(propagated-inputs (list go-github-com-stretchr-testify))
(home-page "https://github.com/jcmturner/dnsutils")
(synopsis "Go library with DNS utils")
(description
"The dnsutils package provides a Go function to return a map of Service
Records (SRV) in the order they should be used for a given service, protocol
and name. The order is determined by the records' priority and randomized
selection based on their relative weighting. This package is useful for
network applications that require accessing services using SRV records.")
(license license:asl2.0)))
(define-public go-github-com-jcmturner-goidentity-v6
(package
(name "go-github-com-jcmturner-goidentity-v6")