nixpkgs/pkgs/applications/networking/gmailctl/default.nix

41 lines
913 B
Nix
Raw Normal View History

{ 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";
2021-09-12 14:29:29 +00:00
version = "0.9.0";
2020-04-06 17:02:40 +00:00
src = fetchFromGitHub {
owner = "mbrt";
repo = "gmailctl";
rev = "v${version}";
2021-09-12 14:29:29 +00:00
sha256 = "sha256-1gOixuOvPHEjnnDNNda9sktnhffovOfeG4XDrLRRMlE=";
2020-04-06 17:02:40 +00:00
};
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)
'';
2021-09-12 14:29:29 +00:00
vendorSha256 = "sha256-Yv3OGHFOmenst/ujUgvCaSEjwwBf3W9n+55ztVhuWjo=";
2020-04-06 17:02:40 +00:00
doCheck = false;
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;
maintainers = [ maintainers.doronbehar ];
platforms = platforms.unix;
};
}