about summary refs log tree commit diff
path: root/pkgs/applications/networking/gmailctl/default.nix
blob: 9fc1e25a92d7a85b7df76158ec16f579faae7a3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:

buildGoModule rec {
  pname = "gmailctl";
  # on an unstable version because of https://github.com/mbrt/gmailctl/issues/232
  # and https://github.com/mbrt/gmailctl/commit/484bb689866987580e0576165180ef06375a543f
  version = "unstable-2022-03-24";

  src = fetchFromGitHub {
    owner = "mbrt";
    repo = "gmailctl";
    rev = "484bb689866987580e0576165180ef06375a543f";
    sha256 = "sha256-hIoS64QEDJ1qq3KJ2H8HjgQl8SxuIo+xz7Ot8CdjjQA=";
  };

  vendorSha256 = "sha256-KWM20a38jZ3/a45313kxY2LaCQyiNMEdfdIV78phrBo=";

  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 ];
  };
}