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

29 lines
619 B
Nix
Raw Normal View History

{ lib
2020-04-06 17:02:40 +00:00
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gmailctl";
2021-01-18 22:18:04 +00:00
version = "0.8.0";
2020-04-06 17:02:40 +00:00
src = fetchFromGitHub {
owner = "mbrt";
repo = "gmailctl";
rev = "v${version}";
2021-01-18 22:18:04 +00:00
sha256 = "sha256-UZzpecW4vW1JYUDCcwDIJXCGjw80fgZC4wvCh0DdE98=";
2020-04-06 17:02:40 +00:00
};
2021-01-18 22:18:04 +00:00
vendorSha256 = "sha256-5oVr1qazTzsSNVLvcAsAN8UyrJOeqLjSVinImLOyJlk=";
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;
};
}