sharlatan pushed a commit to branch go-team
in repository guix.
commit 7446484f768618de1c2b62fc1d3fb14703002a78
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Feb 27 16:38:19 2025 +0000
gnu: Add go-github-com-pion-srtp-v3.
* gnu/packages/golang-web.scm (go-github-com-pion-srtp-v3): New variable.
Change-Id: I93b7b0b45eeecd5f300d201142193965062c2198
---
gnu/packages/golang-web.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 9862d30f62..6c936cf36d 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -7119,6 +7119,28 @@ Protocol,SCTP} as specified in
"Package srtp implements Secure Real-time Transport Protocol.")
(license license:expat)))
+(define-public go-github-com-pion-srtp-v3
+ (package
+ (inherit go-github-com-pion-srtp-v2)
+ (name "go-github-com-pion-srtp-v3")
+ (version "3.0.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pion/srtp")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "03343fsgrawfy9plsl7y5022ygjln3jvsn3im5xl1qwnc68rb1a2"))))
+ (arguments
+ (list
+ #:import-path "github.com/pion/srtp/v3"))
+ (propagated-inputs
+ (modify-inputs (package-propagated-inputs go-github-com-pion-srtp-v2)
+ (replace "go-github-com-pion-transport-v2"
+ go-github-com-pion-transport-v3)))))
+
(define-public go-github-com-pion-stun
(package
(name "go-github-com-pion-stun")