86 lines
2.4 KiB
Nix
86 lines
2.4 KiB
Nix
{ stdenv, fetchurl, lib, qtbase, qtmultimedia, qtsvg, qtdeclarative, qttools, full,
|
|
libsecret, libGL, libpulseaudio, glib, makeWrapper, makeDesktopItem }:
|
|
|
|
let
|
|
version = "1.1.4-1";
|
|
|
|
description = ''
|
|
An application that runs on your computer in the background and seamlessly encrypts
|
|
and decrypts your mail as it enters and leaves your computer.
|
|
|
|
To work, gnome-keyring service must be enabled.
|
|
'';
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "protonmail-bridge";
|
|
exec = "protonmail-bridge";
|
|
icon = "protonmail-bridge";
|
|
comment = stdenv.lib.replaceStrings ["\n"] [" "] description;
|
|
desktopName = "ProtonMail Bridge";
|
|
genericName = "ProtonMail Bridge for Linux";
|
|
categories = "Utility;Security;Network;Email";
|
|
};
|
|
in stdenv.mkDerivation rec {
|
|
name = "protonmail-bridge-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://protonmail.com/download/protonmail-bridge_${version}_amd64.deb";
|
|
sha256 = "16w3l81j10syl2pis08sl752yapbgjy531qs0n1ghmsx2d12n7kl";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
sourceRoot = ".";
|
|
|
|
unpackCmd = ''
|
|
ar p "$src" data.tar.xz | tar xJ
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{bin,lib,share/applications}
|
|
mkdir -p $out/share/{applications,icons/hicolor/scalable/apps}
|
|
|
|
cp -r usr/lib/protonmail/bridge/protonmail-bridge $out/lib
|
|
cp usr/share/icons/protonmail/ProtonMail_Bridge.svg $out/share/icons/hicolor/scalable/apps/protonmail-bridge.svg
|
|
cp ${desktopItem}/share/applications/* $out/share/applications
|
|
|
|
ln -s $out/lib/protonmail-bridge $out/bin/protonmail-bridge
|
|
'';
|
|
|
|
postFixup = let
|
|
rpath = lib.makeLibraryPath [
|
|
stdenv.cc.cc.lib
|
|
qtbase
|
|
qtmultimedia
|
|
qtsvg
|
|
qtdeclarative
|
|
qttools
|
|
libGL
|
|
libsecret
|
|
libpulseaudio
|
|
glib
|
|
];
|
|
|
|
qtPath = prefix: "${full}/${prefix}";
|
|
in ''
|
|
patchelf \
|
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath "${rpath}" \
|
|
$out/lib/protonmail-bridge
|
|
|
|
wrapProgram $out/lib/protonmail-bridge \
|
|
--set QT_PLUGIN_PATH "${qtPath qtbase.qtPluginPrefix}" \
|
|
--set QML_IMPORT_PATH "${qtPath qtbase.qtQmlPrefix}" \
|
|
--set QML2_IMPORT_PATH "${qtPath qtbase.qtQmlPrefix}" \
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.protonmail.com/bridge;
|
|
license = licenses.mit;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ lightdiscord ];
|
|
|
|
inherit description;
|
|
};
|
|
}
|