4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ pkgs, lib, stdenv, fetchurl, dpkg, jre_headless, nixosTests }:
|
|
|
|
let
|
|
pname = "jicofo";
|
|
version = "1.0-612";
|
|
src = fetchurl {
|
|
url = "https://download.jitsi.org/stable/${pname}_${version}-1_all.deb";
|
|
sha256 = "0xv3p2h8g1jwcmxljdpz08d6dsz543mznp0nwgb6vr93faz8kc81";
|
|
};
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit pname version src;
|
|
|
|
dontBuild = true;
|
|
|
|
unpackCmd = "${dpkg}/bin/dpkg-deb -x $src debcontents";
|
|
|
|
installPhase = ''
|
|
substituteInPlace usr/share/jicofo/jicofo.sh \
|
|
--replace "exec java" "exec ${jre_headless}/bin/java"
|
|
|
|
mkdir -p $out/{share,bin}
|
|
mv usr/share/jicofo $out/share/
|
|
mv etc $out/
|
|
cp ${./logging.properties-journal} $out/etc/jitsi/jicofo/logging.properties-journal
|
|
ln -s $out/share/jicofo/jicofo.sh $out/bin/jicofo
|
|
'';
|
|
|
|
passthru.tests = {
|
|
single-node-smoke-test = nixosTests.jitsi-meet;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A server side focus component used in Jitsi Meet conferences";
|
|
longDescription = ''
|
|
JItsi COnference FOcus is a server side focus component used in Jitsi Meet conferences.
|
|
'';
|
|
homepage = "https://github.com/jitsi/jicofo";
|
|
license = licenses.asl20;
|
|
maintainers = teams.jitsi.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|