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

29 lines
627 B
Nix
Raw Normal View History

{ lib, stdenv
2020-04-06 10:02:40 -07:00
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gmailctl";
2021-01-18 14:18:04 -08:00
version = "0.8.0";
2020-04-06 10:02:40 -07:00
src = fetchFromGitHub {
owner = "mbrt";
repo = "gmailctl";
rev = "v${version}";
2021-01-18 14:18:04 -08:00
sha256 = "sha256-UZzpecW4vW1JYUDCcwDIJXCGjw80fgZC4wvCh0DdE98=";
2020-04-06 10:02:40 -07:00
};
2021-01-18 14:18:04 -08:00
vendorSha256 = "sha256-5oVr1qazTzsSNVLvcAsAN8UyrJOeqLjSVinImLOyJlk=";
2020-04-06 10:02:40 -07:00
doCheck = false;
meta = with lib; {
2020-04-06 10:02:40 -07:00
description = "Declarative configuration for Gmail filters";
homepage = "https://github.com/mbrt/gmailctl";
license = licenses.mit;
maintainers = [ maintainers.doronbehar ];
platforms = platforms.unix;
};
}