mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
132 lines
3.7 KiB
Nix
132 lines
3.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildNpmPackage
|
|
, fetchFromGitHub
|
|
, copyDesktopItems
|
|
, makeDesktopItem
|
|
, makeWrapper
|
|
, libpng
|
|
, libX11
|
|
, libXi
|
|
, libXtst
|
|
, zlib
|
|
, darwin
|
|
, electron
|
|
}:
|
|
|
|
let
|
|
inherit (darwin.apple_sdk.frameworks) Carbon CoreFoundation ApplicationServices OpenGL;
|
|
in
|
|
buildNpmPackage rec {
|
|
pname = "jitsi-meet-electron";
|
|
version = "2024.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jitsi";
|
|
repo = "jitsi-meet-electron";
|
|
rev = "v${version}";
|
|
hash = "sha256-jnt+aHkCnIj4GGFbAk6AlVhg0rvzFhGCELAaYMCZx88=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
copyDesktopItems
|
|
];
|
|
|
|
# robotjs node-gyp dependencies
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
|
|
libpng
|
|
libX11
|
|
libXi
|
|
libXtst
|
|
zlib
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
Carbon
|
|
CoreFoundation
|
|
ApplicationServices
|
|
OpenGL
|
|
];
|
|
|
|
npmDepsHash = "sha256-zmnxNJdalspZib1PGZN0YBIauJ+gaxs6Iir94cPRNtU=";
|
|
|
|
makeCacheWritable = true;
|
|
|
|
env.ELECTRON_SKIP_BINARY_DOWNLOAD = 1;
|
|
|
|
# disable code signing on Darwin
|
|
env.CSC_IDENTITY_AUTO_DISCOVERY = "false";
|
|
|
|
preBuild = ''
|
|
# remove some prebuilt binaries
|
|
find node_modules -type d -name prebuilds -exec rm -r {} +
|
|
|
|
# don't force both darwin architectures together
|
|
substituteInPlace node_modules/@jitsi/robotjs/binding.gyp \
|
|
--replace-fail "-arch x86_64" "" \
|
|
--replace-fail "-arch arm64" ""
|
|
'';
|
|
|
|
postBuild = ''
|
|
cp -r ${electron.dist} electron-dist
|
|
chmod -R u+w electron-dist
|
|
|
|
# npmRebuild is needed because robotjs won't be built on darwin otherwise
|
|
# asarUnpack makes sure to unwrap binaries so that nix can see the RPATH
|
|
npm exec electron-builder -- \
|
|
--dir \
|
|
-c.npmRebuild=true \
|
|
-c.asarUnpack="**/*.node" \
|
|
-c.electronDist=electron-dist \
|
|
-c.electronVersion=${electron.version}
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
${lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
mkdir -p $out/share/jitsi-meet-electron
|
|
cp -r dist/*-unpacked/{locales,resources{,.pak}} $out/share/jitsi-meet-electron
|
|
|
|
makeWrapper ${lib.getExe electron} $out/bin/jitsi-meet-electron \
|
|
--add-flags $out/share/jitsi-meet-electron/resources/app.asar \
|
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" \
|
|
--set-default ELECTRON_IS_DEV 0 \
|
|
--inherit-argv0
|
|
|
|
install -Dm644 resources/icons/512x512.png $out/share/icons/hicolor/512x512/apps/jitsi-meet-electron.png
|
|
''}
|
|
|
|
${lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
mkdir -p $out/Applications
|
|
cp -r dist/mac*/"Jitsi Meet.app" $out/Applications
|
|
makeWrapper "$out/Applications/Jitsi Meet.app/Contents/MacOS/Jitsi Meet" $out/bin/jitsi-meet-electron
|
|
''}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "jitsi-meet-electron";
|
|
exec = "jitsi-meet-electron %U";
|
|
icon = "jitsi-meet-electron";
|
|
desktopName = "Jitsi Meet";
|
|
comment = meta.description;
|
|
categories = [ "VideoConference" "AudioVideo" "Audio" "Video" "Network" ];
|
|
mimeTypes = [ "x-scheme-handler/jitsi-meet" ];
|
|
terminal = false;
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/jitsi/jitsi-meet-electron/releases/tag/${src.rev}";
|
|
description = "Jitsi Meet desktop application powered by Electron";
|
|
homepage = "https://github.com/jitsi/jitsi-meet-electron";
|
|
license = licenses.asl20;
|
|
mainProgram = "jitsi-meet-electron";
|
|
maintainers = teams.jitsi.members ++ [ maintainers.tomasajt ];
|
|
inherit (electron.meta) platforms;
|
|
};
|
|
}
|