forked from mirrors/nixpkgs
47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, pkg-config, cmake, ninja, yasm
|
|
, libjpeg, openssl, libopus, ffmpeg, alsa-lib, libpulseaudio, protobuf
|
|
, openh264, usrsctp, libevent, libvpx
|
|
, libX11, libXtst, libXcomposite, libXdamage, libXext, libXrender, libXrandr, libXi
|
|
, glib, abseil-cpp, pcre, util-linuxMinimal, libselinux, libsepol, pipewire
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "tg_owt";
|
|
version = "unstable-2021-09-15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "desktop-app";
|
|
repo = "tg_owt";
|
|
rev = "575fb17d2853c43329e45f6693370f5e41668055";
|
|
sha256 = "17lhy5g4apdakspv75zm070k7003crf1i80m8wy8f631s86v30md";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ pkg-config cmake ninja yasm ];
|
|
|
|
buildInputs = [
|
|
libjpeg openssl libopus ffmpeg alsa-lib libpulseaudio protobuf
|
|
openh264 usrsctp libevent libvpx
|
|
libX11 libXtst libXcomposite libXdamage libXext libXrender libXrandr libXi
|
|
glib abseil-cpp pcre util-linuxMinimal libselinux libsepol pipewire
|
|
];
|
|
|
|
cmakeFlags = [
|
|
# Building as a shared library isn't officially supported and may break at any time.
|
|
"-DBUILD_SHARED_LIBS=OFF"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
# Required for linking downstream binaries.
|
|
abseil-cpp openh264 usrsctp libevent libvpx
|
|
];
|
|
|
|
meta = with lib; {
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ oxalica ];
|
|
};
|
|
}
|