1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 02:50:45 +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.") netmasks.")
(license license:expat))) (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 (define-public go-github-com-wlynxg-anet
(package (package
(name "go-github-com-wlynxg-anet") (name "go-github-com-wlynxg-anet")

View file

@ -1087,31 +1087,6 @@ in the style of communicating sequential processes (@dfn{CSP}).")
(define-public go-std-1.22 (make-go-std go-1.22)) (define-public go-std-1.22 (make-go-std go-1.22))
(define-public go-std-1.23 (make-go-std go-1.23)) (define-public go-std-1.23 (make-go-std go-1.23))
(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
`(#: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 lyrebird (define-public lyrebird
(package (package
(name "lyrebird") (name "lyrebird")