1 { lib, stdenv, fetchurl, nixosTests, olm }:
3 stdenv.mkDerivation rec {
8 url = "https://download.jitsi.org/jitsi-meet/src/jitsi-meet-${version}.tar.bz2";
9 sha256 = "XJlfCMQXnHjfHQhK916RXsdPzrU2U2IaOMiXIHL1sCI=";
21 # Test requires running Jitsi Videobridge and Jicofo which are Linux-only
22 passthru.tests = lib.optionalAttrs stdenv.isLinux {
23 single-host-smoke-test = nixosTests.jitsi-meet;
26 passthru.updateScript = ./update.sh;
29 description = "Secure, Simple and Scalable Video Conferences";
31 Jitsi Meet is an open-source (Apache) WebRTC JavaScript application that uses Jitsi Videobridge
32 to provide high quality, secure and scalable video conferences.
34 homepage = "https://github.com/jitsi/jitsi-meet";
35 license = licenses.asl20;
36 maintainers = teams.jitsi.members;
37 platforms = platforms.all;
38 inherit (olm.meta) knownVulnerabilities;