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
155 lines
3.3 KiB
Nix
155 lines
3.3 KiB
Nix
{ atomEnv
|
|
, autoPatchelfHook
|
|
, dpkg
|
|
, fetchurl
|
|
, makeDesktopItem
|
|
, makeWrapper
|
|
, stdenv
|
|
, lib
|
|
, udev
|
|
, wrapGAppsHook
|
|
, cpio
|
|
, xar
|
|
, libdbusmenu
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
throwSystem = throw "Unsupported system: ${system}";
|
|
|
|
pname = "wire-desktop";
|
|
|
|
version = {
|
|
x86_64-darwin = "3.21.3959";
|
|
x86_64-linux = "3.21.2936";
|
|
}.${system} or throwSystem;
|
|
|
|
sha256 = {
|
|
x86_64-darwin = "0fgzzqf1wnkjbcr0j0vjn6sggkz0z1kx6w4gi7gk4c4markdicm1";
|
|
x86_64-linux = "033804nkz1fdmq3p8iplrlx708x1fjlr09bmrpy36lqg5h7m3yd6";
|
|
}.${system} or throwSystem;
|
|
|
|
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/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [
|
|
arianvp
|
|
kiwi
|
|
toonn
|
|
worldofpeace
|
|
];
|
|
platforms = [
|
|
"x86_64-darwin"
|
|
"x86_64-linux"
|
|
];
|
|
};
|
|
|
|
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 sha256;
|
|
};
|
|
|
|
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";
|
|
extraEntries = ''
|
|
StartupWMClass=Wire
|
|
'';
|
|
};
|
|
|
|
dontBuild = true;
|
|
dontConfigure = true;
|
|
dontPatchELF = true;
|
|
dontWrapGApps = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
dpkg
|
|
makeWrapper
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = atomEnv.packages;
|
|
|
|
unpackPhase = "dpkg-deb -x $src .";
|
|
|
|
installPhase = ''
|
|
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"
|
|
'';
|
|
|
|
runtimeDependencies = [
|
|
(lib.getLib udev)
|
|
libdbusmenu
|
|
];
|
|
|
|
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 sha256;
|
|
};
|
|
|
|
buildInputs = [
|
|
cpio
|
|
xar
|
|
];
|
|
|
|
unpackPhase = ''
|
|
xar -xf $src
|
|
cd com.wearezeta.zclient.mac.pkg
|
|
'';
|
|
|
|
buildPhase = ''
|
|
cat Payload | gunzip -dc | cpio -i
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/Applications
|
|
cp -r Wire.app $out/Applications
|
|
'';
|
|
};
|
|
|
|
in
|
|
if stdenv.isDarwin
|
|
then darwin
|
|
else linux
|