mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 21:23:06 +00:00
9f6596ebe7
Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
57 lines
1.7 KiB
Nix
57 lines
1.7 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, pkg-config, libsecret }:
|
|
|
|
buildGoModule rec {
|
|
pname = "protonmail-bridge";
|
|
version = "3.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ProtonMail";
|
|
repo = "proton-bridge";
|
|
rev = "v${version}";
|
|
hash = "sha256-jCoTFpxEHk0ITEzJ3RaVeUpzX4E7tuI9ZBKwabtOT6w=";
|
|
};
|
|
|
|
vendorHash = "sha256-zWcqEAeHbBUVRLPw37NgWOoiq/CXCcP/geP3lfo4TWg=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ libsecret ];
|
|
|
|
preBuild = ''
|
|
patchShebangs ./utils/
|
|
(cd ./utils/ && ./credits.sh bridge)
|
|
'';
|
|
|
|
ldflags =
|
|
let constants = "github.com/ProtonMail/proton-bridge/v3/internal/constants"; in
|
|
[
|
|
"-X ${constants}.Version=${version}"
|
|
"-X ${constants}.Revision=${src.rev}"
|
|
"-X ${constants}.buildTime=unknown"
|
|
"-X ${constants}.FullAppName=ProtonMailBridge" # Should be "Proton Mail Bridge", but quoting doesn't seems to work in nix's ldflags
|
|
];
|
|
|
|
subPackages = [
|
|
"cmd/Desktop-Bridge"
|
|
];
|
|
|
|
postInstall = ''
|
|
mv $out/bin/Desktop-Bridge $out/bin/protonmail-bridge # The cli is named like that in other distro packages
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ProtonMail/proton-bridge";
|
|
changelog = "https://github.com/ProtonMail/proton-bridge/blob/${src.rev}/Changelog.md";
|
|
downloadPage = "https://github.com/ProtonMail/proton-bridge/releases";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ mrfreezeex ];
|
|
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.
|
|
|
|
To work, gnome-keyring service must be enabled.
|
|
'';
|
|
};
|
|
}
|