depot/third_party/nixpkgs/pkgs/by-name/wi/wire-desktop/package.nix

195 lines
4.2 KiB
Nix

{
autoPatchelfHook,
dpkg,
fetchurl,
makeDesktopItem,
makeWrapper,
stdenv,
lib,
udev,
buildPackages,
cpio,
xar,
libdbusmenu,
alsa-lib,
mesa,
nss,
nspr,
systemd,
}:
let
inherit (stdenv.hostPlatform) system;
throwSystem = throw "Unsupported system: ${system}";
pname = "wire-desktop";
version =
let
x86_64-darwin = "3.35.4861";
in
{
inherit x86_64-darwin;
aarch64-darwin = x86_64-darwin;
x86_64-linux = "3.36.3462";
}
.${system} or throwSystem;
hash =
let
x86_64-darwin = "sha256-QPxslMEz1jOH2LceFOdCyVDtpya1SfJ8GWMIAIhie4U=";
in
{
inherit x86_64-darwin;
aarch64-darwin = x86_64-darwin;
x86_64-linux = "sha256-tlX15AT4PcrmD2Vna99TGqo0b/8xv2YOAt03aCqSeXg=";
}
.${system} or throwSystem;
meta = with lib; {
description = "Modern, secure messenger for everyone";
longDescription = ''
Wire Personal is a secure, privacy-friendly messenger. It combines useful
and fun features, audited security, and a beautiful, distinct user
interface. It does not require a phone number to register and chat.
* End-to-end encrypted chats, calls, and files
* Crystal clear voice and video calling
* File and screen sharing
* Timed messages and chats
* Synced across your phone, desktop and tablet
'';
homepage = "https://wire.com/";
downloadPage = "https://wire.com/download/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
knownVulnerabilities = [ "CVE-2024-6775" ];
license = licenses.gpl3Plus;
maintainers = with maintainers; [
arianvp
toonn
];
platforms = platforms.darwin ++ [
"x86_64-linux"
];
hydraPlatforms = [ ];
};
linux = stdenv.mkDerivation rec {
inherit pname version meta;
src = fetchurl {
url = "https://wire-app.wire.com/linux/debian/pool/main/Wire-${version}_amd64.deb";
inherit hash;
};
desktopItem = makeDesktopItem {
categories = [
"Network"
"InstantMessaging"
"Chat"
"VideoConference"
];
comment = "Secure messenger for everyone";
desktopName = "Wire";
exec = "wire-desktop %U";
genericName = "Secure messenger";
icon = "wire-desktop";
name = "wire-desktop";
startupWMClass = "Wire";
};
dontBuild = true;
dontConfigure = true;
dontPatchELF = true;
dontWrapGApps = true;
# TODO: migrate off autoPatchelfHook and use nixpkgs' electron
nativeBuildInputs = [
autoPatchelfHook
dpkg
makeWrapper
(buildPackages.wrapGAppsHook3.override { makeWrapper = buildPackages.makeShellWrapper; })
];
buildInputs = [
alsa-lib
mesa
nss
nspr
systemd
];
installPhase = ''
runHook preInstall
mkdir -p "$out/bin"
cp -R "opt" "$out"
cp -R "usr/share" "$out/share"
chmod -R g-w "$out"
# Desktop file
mkdir -p "$out/share/applications"
cp "${desktopItem}/share/applications/"* "$out/share/applications"
runHook postInstall
'';
runtimeDependencies = [
(lib.getLib udev)
libdbusmenu
];
preFixup = ''
gappsWrapperArgs+=(--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}}")
'';
postFixup = ''
makeWrapper $out/opt/Wire/wire-desktop $out/bin/wire-desktop \
"''${gappsWrapperArgs[@]}"
'';
};
darwin = stdenv.mkDerivation {
inherit pname version meta;
src = fetchurl {
url = "https://github.com/wireapp/wire-desktop/releases/download/macos%2F${version}/Wire.pkg";
inherit hash;
};
buildInputs = [
cpio
xar
];
unpackPhase = ''
runHook preUnpack
xar -xf $src
cd com.wearezeta.zclient.mac.pkg
runHook postUnpack
'';
buildPhase = ''
runHook preBuild
cat Payload | gunzip -dc | cpio -i
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p $out/Applications
cp -r Wire.app $out/Applications
runHook postInstall
'';
};
in
if stdenv.hostPlatform.isDarwin then darwin else linux