mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
19 lines
403 B
Nix
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;
|
|
};
|
|
}
|