1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: go-github-com-dpotapov-go-spnego: Move to golang-web.

* gnu/packages/golang.scm (go-github-com-dpotapov-go-spnego): Move from
here ...
* gnu/packages/golang-web.scm: ... to here.

Change-Id: I4c4ab0aa707fe12f82a2393d763f6b5afc266f87
This commit is contained in:
Sharlatan Hellseher 2024-12-29 22:11:28 +00:00
parent e74d247d0b
commit e863412e8b
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 30 additions and 28 deletions

View file

@ -1396,6 +1396,36 @@ Data Representation (XDR) standard protocol as specified in RFC
4506 (obsoletes RFC 1832 and RFC 1014) in pure Go.") 4506 (obsoletes RFC 1832 and RFC 1014) in pure Go.")
(license license:isc))) (license license:isc)))
(define-public go-github-com-dpotapov-go-spnego
(package
(name "go-github-com-dpotapov-go-spnego")
(version "0.0.0-20220426193508-b7f82e4507db")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/dpotapov/go-spnego")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "1rpcgzkqhdwfsi8a9f9qar16i663pdx3gvwd6c0vfppy7qjmpjfr"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/dpotapov/go-spnego"))
(native-inputs
(list go-github-com-stretchr-testify))
(propagated-inputs
(list go-github-com-jcmturner-gokrb5-v8
go-golang-org-x-net))
(home-page "https://github.com/dpotapov/go-spnego")
(synopsis "HTTP calls with Kerberos authentication")
(description
"The package extends Go's HTTP Transport allowing Kerberos
authentication through Negotiate mechanism (see
@url{https://tools.ietf.org/html/rfc4559, RFC4559}).")
(license license:expat)))
(define-public go-github-com-elazarl-goproxy (define-public go-github-com-elazarl-goproxy
(package (package
(name "go-github-com-elazarl-goproxy") (name "go-github-com-elazarl-goproxy")

View file

@ -1487,34 +1487,6 @@ configuration file.")
(sha256 (sha256
(base32 "066bqlgw5h7a3kxswqlv734asb7nw2y6snsn09yqk0ixj23qw22s")))))) (base32 "066bqlgw5h7a3kxswqlv734asb7nw2y6snsn09yqk0ixj23qw22s"))))))
(define-public go-github-com-dpotapov-go-spnego
(package
(name "go-github-com-dpotapov-go-spnego")
(version "0.0.0-20220426193508-b7f82e4507db")
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/dpotapov/go-spnego")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "1rpcgzkqhdwfsi8a9f9qar16i663pdx3gvwd6c0vfppy7qjmpjfr"))))
(build-system go-build-system)
(arguments `(#:import-path "github.com/dpotapov/go-spnego"))
(native-inputs
(list go-github-com-stretchr-testify))
(propagated-inputs (list go-github-com-jcmturner-gokrb5-v8
go-golang-org-x-net))
(home-page "https://github.com/dpotapov/go-spnego")
(synopsis "HTTP calls with Kerberos authentication")
(description
"The package extends Go's HTTP Transport allowing Kerberos
authentication through Negotiate mechanism (see
@url{https://tools.ietf.org/html/rfc4559, RFC4559}).")
(license license:expat)))
(define-public go-github-com-blanu-dust (define-public go-github-com-blanu-dust
(package (package
(name "go-github-com-blanu-dust") (name "go-github-com-blanu-dust")