70 lines
1.5 KiB
Nix
70 lines
1.5 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
|
|
, go
|
|
, goModules
|
|
, libsecret
|
|
, pkg-config
|
|
, qtbase
|
|
, qtdoc
|
|
}:
|
|
|
|
let
|
|
|
|
builder =
|
|
{ pname
|
|
, tags
|
|
, ...
|
|
}@args:
|
|
|
|
buildGoModule (stdenv.lib.recursiveUpdate args rec {
|
|
inherit pname;
|
|
version = "1.5.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ProtonMail";
|
|
repo = "proton-bridge";
|
|
rev = "br-${version}";
|
|
sha256 = "1398d13skn6as9carxiws500rp5j9b33r0j2blpxrff856a8v0bp";
|
|
};
|
|
|
|
vendorSha256 = "1a83kh096pkyklqgdip112fps6ia90vg7zxv0nvivxmdyik2vcvz";
|
|
|
|
nativeBuildInputs = (args.nativeBuildInputs or [ ]) ++ [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = (args.buildInputs or [ ]) ++ [
|
|
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; {
|
|
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 { });
|
|
}
|