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-willscott-goturn: Move to golang-web.

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

Change-Id: I64745a4804b41101f6c6b3152d3cb04081dc6315
This commit is contained in:
Sharlatan Hellseher 2025-02-22 09:45:14 +00:00
parent 3eea492d93
commit 41e098be93
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 26 additions and 25 deletions

View file

@ -8860,6 +8860,32 @@ https://github.com/restic/restic project.")
netmasks.")
(license license:expat)))
(define-public go-github-com-willscott-goturn
(package
(name "go-github-com-willscott-goturn")
(version "0.0.0-20170802220503-19f41278d0c9")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/willscott/goturn")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0zwvhfznr84ayzknn9flh65nvqjsixisgy9fkhz2jlahl1ldqcq7"))))
(build-system go-build-system)
(arguments
(list
#:tests? #f ; tests are broken on a newer go, starting from 1.17.
#:import-path "github.com/willscott/goturn"))
(home-page "https://github.com/willscott/goturn")
(synopsis "Go TURN dialer")
(description
"GoTURN is a library providing a Go interface compatible with the
golang proxy package which connects through a TURN relay. It provides parsing
and encoding support for STUN and TURN protocols.")
(license license:bsd-3)))
(define-public go-github-com-wlynxg-anet
(package
(name "go-github-com-wlynxg-anet")