nur-packages/pkgs/applications/networking/protonmail-bridge/default.nix

70 lines
1.5 KiB
Nix
Raw Normal View History

2020-10-15 19:05:13 +11:00
{ stdenv
, fetchFromGitHub
, buildGoModule
, go
, goModules
2020-10-15 19:05:13 +11:00
, libsecret
, pkg-config
, qtbase
, qtdoc
}:
let
builder =
2020-10-15 19:05:13 +11:00
{ pname
, tags
, ...
}@args:
buildGoModule (stdenv.lib.recursiveUpdate args rec {
2020-10-15 19:05:13 +11:00
inherit pname;
2020-10-25 12:46:29 +11:00
version = "1.4.5";
2020-10-15 19:05:13 +11:00
src = fetchFromGitHub {
owner = "ProtonMail";
repo = "proton-bridge";
2020-10-25 12:46:29 +11:00
rev = "br-${version}";
sha256 = "1339h3sa7xhqx7mbq2zzvv3mln0zsxh4aa437hs4r3gbq8jvbf97";
2020-10-15 19:05:13 +11:00
};
2020-10-25 12:46:29 +11:00
vendorSha256 = "0kdjm30xchng09k09fr7mfs9abgl0xncc25v9hzqfli6ii1qr1l2";
2020-10-15 19:05:13 +11:00
nativeBuildInputs = (args.nativeBuildInputs or [ ]) ++ [
pkg-config
];
buildInputs = (args.buildInputs or [ ]) ++ [
2020-10-15 19:05:13 +11:00
libsecret
];
buildFlagsArray =
let
t = "github.com/ProtonMail/proton-bridge/pkg/constants";
in
[
"-tags=${tags}"
''
-ldflags=
-X ${t}.Version=${version}
-X ${t}.Revision=unknown
-X ${t}.BuildDate=unknown
''
];
meta = with stdenv.lib; {
2020-10-15 19:05:13 +11:00
description = "Integrate ProtonMail paid account with any program that supports IMAP and SMTP";
homepage = "https://protonmail.com";
license = licenses.gpl3;
plaforms = platforms.x86_64;
};
});
in
{
protonmail-bridge = builder (import ./app.nix { inherit qtbase go goModules; });
protonmail-bridge-headless = builder (import ./headless.nix { });
2020-10-15 19:05:13 +11:00
}