{ lib, buildGoModule, fetchFromGitHub, pkg-config, libsecret }: buildGoModule rec { pname = "protonmail-bridge"; version = "3.11.1"; src = fetchFromGitHub { owner = "ProtonMail"; repo = "proton-bridge"; rev = "v${version}"; hash = "sha256-PM162vj1Q336fM5z6KoBgtujz9UgESIxUW3Lw8AEYTw="; }; vendorHash = "sha256-qi6ME74pJH/wgDh0xp/Rsc9hPd3v3L/M8pBQJzNieK8="; 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 = { changelog = "https://github.com/ProtonMail/proton-bridge/blob/${src.rev}/Changelog.md"; description = "Use your ProtonMail account with your local e-mail client"; downloadPage = "https://github.com/ProtonMail/proton-bridge/releases"; homepage = "https://github.com/ProtonMail/proton-bridge"; license = lib.licenses.gpl3Plus; 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, use secret-service freedesktop.org API (e.g. Gnome keyring) or pass. ''; mainProgram = "protonmail-bridge"; maintainers = with lib.maintainers; [ mrfreezeex daniel-fahey ]; }; }