2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
39 lines
900 B
Nix
39 lines
900 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gmailctl";
|
|
version = "0.10.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mbrt";
|
|
repo = "gmailctl";
|
|
rev = "v${version}";
|
|
hash = "sha256-OpRkBHNWRrBhh6nGrV7dZT01xsSlbANCk+g7b8SidG0=";
|
|
};
|
|
|
|
vendorHash = "sha256-+r0WHrKARcxW1hUY1HwAXk0X6ZQrbgBj9+GjIJV5DS0=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd gmailctl \
|
|
--bash <($out/bin/gmailctl completion bash) \
|
|
--fish <($out/bin/gmailctl completion fish) \
|
|
--zsh <($out/bin/gmailctl completion zsh)
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Declarative configuration for Gmail filters";
|
|
homepage = "https://github.com/mbrt/gmailctl";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ doronbehar SuperSandro2000 ];
|
|
};
|
|
}
|