mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add go-github-com-pion-ice-v2.
* gnu/packages/golang-web.scm (go-github-com-pion-ice-v2): New variable. Change-Id: I06f3e26ef7aa5e1a71319c636b4f5846c0c2eb2a Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
4ba080a23d
commit
0016122e0e
1 changed files with 30 additions and 0 deletions
|
@ -1696,6 +1696,36 @@ (define-public go-github-com-pion-ice
|
|||
part of @url{https://github.com/pion, Pion} WebRTC implementation.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-pion-ice-v2
|
||||
(package
|
||||
(inherit go-github-com-pion-ice)
|
||||
(name "go-github-com-pion-ice-v2")
|
||||
(version "2.3.24")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/pion/ice/")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0mh7l31vv15gxpl61f22jwpc77b5l9wx4hbjv4h8cgmpb9911cv8"))))
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #f ;Tests require network access.
|
||||
#:go go-1.21
|
||||
#:import-path "github.com/pion/ice/v2"))
|
||||
(propagated-inputs
|
||||
(list go-github-com-google-uuid
|
||||
go-github-com-pion-dtls-v2
|
||||
go-github-com-pion-logging
|
||||
go-github-com-pion-mdns
|
||||
go-github-com-pion-randutil
|
||||
go-github-com-pion-stun
|
||||
go-github-com-pion-transport-v2
|
||||
go-github-com-pion-turn-v2
|
||||
go-golang-org-x-net))))
|
||||
|
||||
(define-public go-github-com-pion-mdns
|
||||
(package
|
||||
(name "go-github-com-pion-mdns")
|
||||
|
|
Loading…
Reference in a new issue