mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
38 lines
984 B
Nix
38 lines
984 B
Nix
{ lib, stdenv, fetchurl, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jitsi-meet";
|
|
version = "1.0.6260";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.jitsi.org/jitsi-meet/src/jitsi-meet-${version}.tar.bz2";
|
|
sha256 = "Y1ELKdFdbnq20yUt4XoXmstJm8uI8EBGIFOvFWf+5Uw=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir $out
|
|
mv * $out/
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.tests = {
|
|
single-host-smoke-test = nixosTests.jitsi-meet;
|
|
};
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with 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 = teams.jitsi.members;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|