nixpkgs/pkgs/servers/web-apps/jitsi-meet/default.nix

37 lines
952 B
Nix
Raw Normal View History

2021-02-13 01:53:45 +00:00
{ lib, stdenv, fetchurl, nixosTests }:
2020-03-18 00:53:08 +00:00
stdenv.mkDerivation rec {
pname = "jitsi-meet";
version = "1.0.5056";
2020-03-18 00:53:08 +00:00
src = fetchurl {
url = "https://download.jitsi.org/jitsi-meet/src/jitsi-meet-${version}.tar.bz2";
sha256 = "0vmxy22zpgmvmg84y6rf9s8y3ann1xzhpaipz7fk9z4ykmkj5knw";
2020-03-18 00:53:08 +00:00
};
dontBuild = true;
installPhase = ''
2021-02-13 01:53:45 +00:00
runHook preInstall
2020-03-18 00:53:08 +00:00
mkdir $out
mv * $out/
2021-02-13 01:53:45 +00:00
runHook postInstall
2020-03-18 00:53:08 +00:00
'';
passthru.tests = {
single-host-smoke-test = nixosTests.jitsi-meet;
};
meta = with lib; {
2020-03-18 00:53:08 +00: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;
maintainers = teams.jitsi.members;
2020-03-18 00:53:08 +00:00
platforms = platforms.all;
};
}