diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-22 23:12:29 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-22 23:13:42 +0100 |
commit | 9bf27e5f4235241b84cfcc112c43a8d39a5fd25e (patch) | |
tree | 841103350b68a0aaac18a72f8bca2ea71270178d | |
parent | a8fe564d7504f2831b22eb309e7d88f5746cde30 (diff) | |
download | guix-9bf27e5f4235241b84cfcc112c43a8d39a5fd25e.tar.gz guix-9bf27e5f4235241b84cfcc112c43a8d39a5fd25e.zip |
gnu: Add go-github-com-pion-datachannel.
* gnu/packages/golang-web.scm (go-github-com-pion-datachannel): New variable.
Change-Id: Idc7e0d132fff3c71c37b784f38bcda9dc77e05b1
-rw-r--r-- | gnu/packages/golang-web.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 547e8a0811..a9658cfbac 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -2024,6 +2024,35 @@ used to read GeoLite2 and GeoIP2 databases, @code{geoip2} provides a higher-level API for doing so.") (license license:isc))) +(define-public go-github-com-pion-datachannel + (package + (name "go-github-com-pion-datachannel") + (version "1.5.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pion/datachannel") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v2xwrzvflrh1s8x6p1dj9h0hmxsp30h8whbl5p544r30rvsbnp2")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/pion/datachannel")) + (native-inputs + (list go-github-com-stretchr-testify)) + (propagated-inputs + (list go-github-com-pion-logging + go-github-com-pion-sctp + go-github-com-pion-transport-v3)) + (home-page "https://github.com/pion/datachannel") + (synopsis "Implementation of WebRTC Data Channels in Golang") + (description + "This package implements @code{WebRTC} Data Channels.") + (license license:expat))) + (define-public go-github-com-pion-dtls (package (name "go-github-com-pion-dtls") |