Merge pull request #92468 from petabyteboy/jitsi-meet

nixos/jitsi-meet: init
This commit is contained in:
Ryan Mulligan
2020-08-03 12:43:37 -07:00
committed by GitHub
12 changed files with 967 additions and 0 deletions
@@ -0,0 +1,34 @@
{ pkgs, stdenv, fetchurl, nixosTests }:
stdenv.mkDerivation rec {
pname = "jitsi-meet";
version = "1.0.4127";
src = fetchurl {
url = "https://download.jitsi.org/jitsi-meet/src/jitsi-meet-${version}.tar.bz2";
sha256 = "1jrrsvgysihd73pjqfv605ax01pg2gn76znr64v7nhli55ddgzqx";
};
dontBuild = true;
installPhase = ''
mkdir $out
mv * $out/
'';
passthru.tests = {
single-host-smoke-test = nixosTests.jitsi-meet;
};
meta = with stdenv.lib; {
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;
maintainers = with maintainers; [ ];
platforms = platforms.all;
};
}