2021-01-23 09:47:37 +01:00
|
|
|
{ lib
|
2020-04-06 19:02:40 +02:00
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
2021-10-27 21:38:17 +02:00
|
|
|
, installShellFiles
|
2020-04-06 19:02:40 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gmailctl";
|
2022-05-31 22:51:38 +02:00
|
|
|
version = "0.10.4";
|
2020-04-06 19:02:40 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mbrt";
|
|
|
|
repo = "gmailctl";
|
2022-05-02 12:11:27 +02:00
|
|
|
rev = "v${version}";
|
2022-05-31 22:51:38 +02:00
|
|
|
sha256 = "sha256-tAYFuxB8LSyFHraAQxCj8Q09mS/9RYcinVm5whpRh04=";
|
2020-04-06 19:02:40 +02:00
|
|
|
};
|
|
|
|
|
2022-05-31 22:51:38 +02:00
|
|
|
vendorSha256 = "sha256-IFxKczPrqCM9NOoOJayfbrsJIMf3eoI9zXSFns0/i8o=";
|
2022-03-27 16:41:49 +02:00
|
|
|
|
2021-10-27 21:38:17 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
installShellFiles
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion --cmd gmailctl \
|
|
|
|
--bash <($out/bin/gmailctl completion bash) \
|
|
|
|
--fish <($out/bin/gmailctl completion fish) \
|
|
|
|
--zsh <($out/bin/gmailctl completion zsh)
|
|
|
|
'';
|
|
|
|
|
2020-08-04 02:26:27 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-06 19:02:40 +02:00
|
|
|
description = "Declarative configuration for Gmail filters";
|
|
|
|
homepage = "https://github.com/mbrt/gmailctl";
|
|
|
|
license = licenses.mit;
|
2021-12-10 03:25:25 +01:00
|
|
|
maintainers = with maintainers; [ doronbehar SuperSandro2000 ];
|
2020-04-06 19:02:40 +02:00
|
|
|
};
|
2020-07-31 05:58:04 +02:00
|
|
|
}
|