ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, dpkg, jdk11, nixosTests }:
|
|
|
|
let
|
|
pname = "jigasi";
|
|
version = "1.1-311-g3de47d0";
|
|
src = fetchurl {
|
|
url = "https://download.jitsi.org/stable/${pname}_${version}-1_all.deb";
|
|
hash = "sha256-pwUgkId7AHFjbqYo02fBgm0gsiMqEz+wvwkdy6sgTD0=";
|
|
};
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit pname version src;
|
|
|
|
nativeBuildInputs = [ dpkg ];
|
|
|
|
dontBuild = true;
|
|
|
|
unpackCmd = "dpkg-deb -x $src debcontents";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
substituteInPlace usr/share/${pname}/${pname}.sh \
|
|
--replace "exec java" "exec ${jdk11}/bin/java"
|
|
|
|
mkdir -p $out/{share,bin}
|
|
mv usr/share/${pname} $out/share/
|
|
mv etc $out/
|
|
ln -s $out/share/${pname}/${pname}.sh $out/bin/${pname}
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.tests = {
|
|
single-node-smoke-test = nixosTests.jitsi-meet;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A server-side application that allows regular SIP clients to join Jitsi Meet conferences";
|
|
mainProgram = "jigasi";
|
|
longDescription = ''
|
|
Jitsi Gateway to SIP: a server-side application that allows regular SIP clients to join Jitsi Meet conferences hosted by Jitsi Videobridge.
|
|
'';
|
|
homepage = "https://github.com/jitsi/jigasi";
|
|
license = licenses.asl20;
|
|
maintainers = teams.jitsi.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|