2021-01-23 08:47:37 +00:00
|
|
|
{ lib
|
2020-04-06 17:02:40 +00:00
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
2021-10-27 19:38:17 +00:00
|
|
|
, installShellFiles
|
2020-04-06 17:02:40 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gmailctl";
|
2022-03-27 17:17:32 +00:00
|
|
|
# on an unstable version because of https://github.com/mbrt/gmailctl/issues/232
|
|
|
|
# and https://github.com/mbrt/gmailctl/commit/484bb689866987580e0576165180ef06375a543f
|
2022-03-27 14:41:49 +00:00
|
|
|
version = "unstable-2022-03-24";
|
2020-04-06 17:02:40 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mbrt";
|
|
|
|
repo = "gmailctl";
|
2022-03-27 14:41:49 +00:00
|
|
|
rev = "484bb689866987580e0576165180ef06375a543f";
|
|
|
|
sha256 = "sha256-hIoS64QEDJ1qq3KJ2H8HjgQl8SxuIo+xz7Ot8CdjjQA=";
|
2020-04-06 17:02:40 +00:00
|
|
|
};
|
|
|
|
|
2022-03-27 14:41:49 +00:00
|
|
|
vendorSha256 = "sha256-KWM20a38jZ3/a45313kxY2LaCQyiNMEdfdIV78phrBo=";
|
|
|
|
|
2021-10-27 19:38:17 +00: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 00:26:27 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-06 17:02:40 +00:00
|
|
|
description = "Declarative configuration for Gmail filters";
|
|
|
|
homepage = "https://github.com/mbrt/gmailctl";
|
|
|
|
license = licenses.mit;
|
2021-12-10 02:25:25 +00:00
|
|
|
maintainers = with maintainers; [ doronbehar SuperSandro2000 ];
|
2020-04-06 17:02:40 +00:00
|
|
|
};
|
2020-07-31 03:58:04 +00:00
|
|
|
}
|