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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
904 B
Nix
Raw Normal View History

{ lib
2020-04-06 18:02:40 +01:00
, buildGoModule
, fetchFromGitHub
2021-10-27 20:38:17 +01:00
, installShellFiles
2020-04-06 18:02:40 +01:00
}:
buildGoModule rec {
pname = "gmailctl";
2022-05-31 21:51:38 +01:00
version = "0.10.4";
2020-04-06 18:02:40 +01:00
src = fetchFromGitHub {
owner = "mbrt";
repo = "gmailctl";
rev = "v${version}";
2022-05-31 21:51:38 +01:00
sha256 = "sha256-tAYFuxB8LSyFHraAQxCj8Q09mS/9RYcinVm5whpRh04=";
2020-04-06 18:02:40 +01:00
};
2022-05-31 21:51:38 +01:00
vendorSha256 = "sha256-IFxKczPrqCM9NOoOJayfbrsJIMf3eoI9zXSFns0/i8o=";
2021-10-27 20:38:17 +01: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)
'';
doCheck = false;
meta = with lib; {
2020-04-06 18:02:40 +01:00
description = "Declarative configuration for Gmail filters";
homepage = "https://github.com/mbrt/gmailctl";
license = licenses.mit;
maintainers = with maintainers; [ doronbehar SuperSandro2000 ];
2020-04-06 18:02:40 +01:00
};
}