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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
984 B
Nix
Raw Normal View History

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;
};
passthru.updateScript = ./update.sh;
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;
maintainers = teams.jitsi.members;
2020-03-18 01:53:08 +01:00
platforms = platforms.all;
};
}