1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 02:50:45 +02:00

gnu: Add go-github-com-pion-webrtc-v4.

* gnu/packages/golang-web.scm (go-github-com-pion-webrtc-v4): New variable.

Change-Id: I963344b5c1a1f45ccb590b2f409a28e9d0c2ecac
This commit is contained in:
Sharlatan Hellseher 2025-02-27 16:38:17 +00:00
parent e015e63ab5
commit f8618e8dae
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -7527,6 +7527,31 @@ STUN, TURN mDNS candidates
@end itemize")
(license license:expat)))
(define-public go-github-com-pion-webrtc-v4
(package
(inherit go-github-com-pion-webrtc-v3)
(name "go-github-com-pion-webrtc-v4")
(version "4.0.11")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/pion/webrtc")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0g7bka1x6cq4a85a73lwg8bmv9dqza0z54vdy2ny0hbypyj7xb23"))))
(build-system go-build-system)
(arguments
(substitute-keyword-arguments
(package-arguments go-github-com-pion-webrtc-v3)
((#:import-path _) "github.com/pion/webrtc/v4")))
(propagated-inputs
(modify-inputs (package-propagated-inputs go-github-com-pion-webrtc-v3)
(replace "go-github-com-pion-dtls-v2" go-github-com-pion-dtls-v3)
(replace "go-github-com-pion-ice-v2" go-github-com-pion-ice-v4)
(replace "go-github-com-pion-srtp-v2" go-github-com-pion-srtp-v3)))))
(define-public go-github-com-pires-go-proxyproto
(package
(name "go-github-com-pires-go-proxyproto")