nixpkgs/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

190 lines
3.9 KiB
Nix
Raw Normal View History

2023-10-02 22:35:31 +00:00
{ autoPatchelfHook
, dpkg
, fetchurl
, makeDesktopItem
, makeWrapper
, stdenv
, lib
, udev
, wrapGAppsHook
, cpio
, xar
, libdbusmenu
2023-10-02 22:35:31 +00:00
, alsa-lib
, mesa
, nss
, nspr
, systemd
2018-04-11 18:46:23 +00:00
}:
2018-04-11 18:46:23 +00:00
let
inherit (stdenv.hostPlatform) system;
2018-04-11 18:46:23 +00:00
2019-08-04 09:08:33 +00:00
throwSystem = throw "Unsupported system: ${system}";
pname = "wire-desktop";
version = let
x86_64-darwin = "3.32.4589";
in {
inherit x86_64-darwin;
aarch64-darwin = x86_64-darwin;
x86_64-linux = "3.32.3079";
2019-08-04 09:08:33 +00:00
}.${system} or throwSystem;
2018-04-11 18:46:23 +00:00
hash = let
x86_64-darwin = "sha256-PDAZCnkgzlausdtwycK+PHfp+zmL33VnX6RzCsgBTZ4=";
in {
inherit x86_64-darwin;
aarch64-darwin = x86_64-darwin;
x86_64-linux = "sha256-+4aRis141ctI50BtBwipoVtPoMGRs82ENqZ+y2ZlL58=";
2019-08-04 09:08:33 +00:00
}.${system} or throwSystem;
2018-07-09 22:34:32 +00:00
meta = with lib; {
description = "A 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 ];
license = licenses.gpl3Plus;
maintainers = with maintainers; [
arianvp
kiwi
toonn
];
platforms = platforms.darwin ++ [
"x86_64-linux"
];
hydraPlatforms = [];
};
2018-04-11 18:46:23 +00:00
linux = stdenv.mkDerivation rec {
inherit pname version meta;
src = fetchurl {
2023-10-02 22:35:31 +00:00
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;
2023-10-02 22:35:31 +00:00
# TODO: migrate off autoPatchelfHook and use nixpkgs' electron
nativeBuildInputs = [
autoPatchelfHook
dpkg
makeWrapper
wrapGAppsHook
];
2023-10-02 22:35:31 +00:00
buildInputs = [
alsa-lib
mesa
nss
nspr
systemd
];
2021-03-05 17:07:53 +00:00
unpackPhase = ''
runHook preUnpack
dpkg-deb -x $src .
runHook postUnpack
'';
installPhase = ''
2021-03-05 17:07:53 +00:00
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"
2021-03-05 17:07:53 +00:00
runHook postInstall
'';
runtimeDependencies = [
(lib.getLib udev)
libdbusmenu
];
postFixup = ''
makeWrapper $out/opt/Wire/wire-desktop $out/bin/wire-desktop \
"''${gappsWrapperArgs[@]}"
'';
};
2018-04-11 18:46:23 +00:00
2019-08-13 21:52:01 +00:00
darwin = stdenv.mkDerivation {
inherit pname version meta;
src = fetchurl {
2023-10-02 22:35:31 +00:00
url = "https://github.com/wireapp/wire-desktop/releases/download/macos%2F${version}/Wire.pkg";
inherit hash;
};
2018-04-11 18:46:23 +00:00
buildInputs = [
cpio
xar
];
2018-04-11 18:46:23 +00:00
unpackPhase = ''
2021-03-05 17:07:53 +00:00
runHook preUnpack
xar -xf $src
cd com.wearezeta.zclient.mac.pkg
2021-03-05 17:07:53 +00:00
runHook postUnpack
'';
2018-04-11 18:46:23 +00:00
buildPhase = ''
2021-03-05 17:07:53 +00:00
runHook preBuild
cat Payload | gunzip -dc | cpio -i
2021-03-05 17:07:53 +00:00
runHook postBuild
'';
2018-07-09 22:34:32 +00:00
installPhase = ''
2021-03-05 17:07:53 +00:00
runHook preInstall
mkdir -p $out/Applications
cp -r Wire.app $out/Applications
2021-03-05 17:07:53 +00:00
runHook postInstall
'';
};
in
if stdenv.isDarwin
then darwin
else linux