2021-01-23 08:47:37 +00:00
|
|
|
{ lib
|
2020-04-06 18:02:40 +01:00
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gmailctl";
|
2021-01-18 22:18:04 +00:00
|
|
|
version = "0.8.0";
|
2020-04-06 18:02:40 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mbrt";
|
|
|
|
repo = "gmailctl";
|
|
|
|
rev = "v${version}";
|
2021-01-18 22:18:04 +00:00
|
|
|
sha256 = "sha256-UZzpecW4vW1JYUDCcwDIJXCGjw80fgZC4wvCh0DdE98=";
|
2020-04-06 18:02:40 +01:00
|
|
|
};
|
|
|
|
|
2021-01-18 22:18:04 +00:00
|
|
|
vendorSha256 = "sha256-5oVr1qazTzsSNVLvcAsAN8UyrJOeqLjSVinImLOyJlk=";
|
2020-04-06 18:02:40 +01:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
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 = [ maintainers.doronbehar ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|