2021-02-13 02:53:45 +01:00
|
|
|
{ lib, stdenv, fetchurl, nixosTests }:
|
2020-03-18 01:53:08 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "jitsi-meet";
|
2022-06-27 18:25:25 +02:00
|
|
|
version = "1.0.6260";
|
2020-03-18 01:53:08 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.jitsi.org/jitsi-meet/src/jitsi-meet-${version}.tar.bz2";
|
2022-06-27 18:25:25 +02:00
|
|
|
sha256 = "Y1ELKdFdbnq20yUt4XoXmstJm8uI8EBGIFOvFWf+5Uw=";
|
2020-03-18 01:53:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
2021-02-13 02:53:45 +01:00
|
|
|
runHook preInstall
|
2020-03-18 01:53:08 +01:00
|
|
|
mkdir $out
|
|
|
|
mv * $out/
|
2021-02-13 02:53:45 +01:00
|
|
|
runHook postInstall
|
2020-03-18 01:53:08 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.tests = {
|
|
|
|
single-host-smoke-test = nixosTests.jitsi-meet;
|
|
|
|
};
|
|
|
|
|
2021-09-09 21:27:51 +02:00
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-03-18 01:53:08 +01:00
|
|
|
description = "Secure, Simple and Scalable Video Conferences";
|
|
|
|
longDescription = ''
|
|
|
|
Jitsi Meet is an open-source (Apache) WebRTC JavaScript application that uses Jitsi Videobridge
|
|
|
|
to provide high quality, secure and scalable video conferences.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/jitsi/jitsi-meet";
|
|
|
|
license = licenses.asl20;
|
2020-08-04 21:46:14 +02:00
|
|
|
maintainers = teams.jitsi.members;
|
2020-03-18 01:53:08 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|