1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00
VILLASnode/packaging/nix/libdatachannel.nix
Philipp Jungkamp 0d69a0eefb packaging-nix: add libdatachannel for webrtc node
Signed-off-by: Philipp Jungkamp <Philipp.Jungkamp@opal-rt.com>
2023-06-13 18:16:55 +02:00

19 lines
403 B
Nix

{
cmake,
lib,
stdenv,
src,
openssl,
}:
stdenv.mkDerivation {
pname = "libdatachannel";
version = "villas";
src = src;
nativeBuildInputs = [cmake];
buildInputs = [openssl];
meta = with lib; {
description = "C/C++ WebRTC network library featuring Data Channels, Media Transport, and WebSockets";
homepage = "https://libdatachannel.org/";
license = licenses.mpl20;
};
}