2020-11-06 20:58:11 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, pkg-config, libsecret }:
|
2018-08-02 10:47:09 +01:00
|
|
|
|
2020-11-06 20:58:11 +00:00
|
|
|
buildGoModule rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "protonmail-bridge";
|
2022-02-13 00:30:11 +00:00
|
|
|
version = "2.1.0";
|
2018-08-02 10:47:09 +01:00
|
|
|
|
2020-11-06 20:58:11 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ProtonMail";
|
|
|
|
repo = "proton-bridge";
|
|
|
|
rev = "br-${version}";
|
2022-02-13 00:30:11 +00:00
|
|
|
sha256 = "sha256-3j2THRqhKK+bXIvTjyYDL9vJ9eH+Yy2LHE49auTKL5k=";
|
2018-08-02 10:47:09 +01:00
|
|
|
};
|
|
|
|
|
2022-02-13 00:30:11 +00:00
|
|
|
vendorSha256 = "sha256-LTsq3qk95LcgyDaEtTUJWCzQY0AjrMvgn61Dhcntdl8=";
|
2018-08-02 10:47:09 +01:00
|
|
|
|
2020-11-06 20:58:11 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-08-02 10:47:09 +01:00
|
|
|
|
2020-11-06 20:58:11 +00:00
|
|
|
buildInputs = [ libsecret ];
|
2018-08-02 10:47:09 +01:00
|
|
|
|
2020-11-06 20:58:11 +00:00
|
|
|
buildPhase = ''
|
2021-04-02 18:53:38 +01:00
|
|
|
runHook preBuild
|
|
|
|
|
|
|
|
patchShebangs ./utils/
|
|
|
|
make BUILD_TIME= -j$NIX_BUILD_CORES build-nogui
|
|
|
|
|
|
|
|
runHook postBuild
|
2018-08-02 10:47:09 +01:00
|
|
|
'';
|
|
|
|
|
2020-11-06 20:58:11 +00:00
|
|
|
installPhase = ''
|
2021-04-02 18:53:38 +01:00
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
install -Dm555 proton-bridge $out/bin/protonmail-bridge
|
|
|
|
|
|
|
|
runHook postInstall
|
2018-08-02 10:47:09 +01:00
|
|
|
'';
|
|
|
|
|
2020-11-06 20:58:11 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/ProtonMail/proton-bridge";
|
|
|
|
changelog = "https://github.com/ProtonMail/proton-bridge/blob/master/Changelog.md";
|
|
|
|
downloadPage = "https://github.com/ProtonMail/proton-bridge/releases";
|
2021-04-02 18:53:38 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2018-08-02 10:47:09 +01:00
|
|
|
maintainers = with maintainers; [ lightdiscord ];
|
2020-11-06 20:58:11 +00:00
|
|
|
description = "Use your ProtonMail account with your local e-mail client";
|
|
|
|
longDescription = ''
|
|
|
|
An application that runs on your computer in the background and seamlessly encrypts
|
|
|
|
and decrypts your mail as it enters and leaves your computer.
|
2018-08-02 10:47:09 +01:00
|
|
|
|
2020-11-06 20:58:11 +00:00
|
|
|
To work, gnome-keyring service must be enabled.
|
|
|
|
'';
|
2018-08-02 10:47:09 +01:00
|
|
|
};
|
|
|
|
}
|