gmailctl: init at 0.6.0

This commit is contained in:
Doron Behar 2020-04-06 20:02:40 +03:00
parent f601ab37c2
commit 85bf628911
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gmailctl";
version = "0.6.0";
src = fetchFromGitHub {
owner = "mbrt";
repo = "gmailctl";
rev = "v${version}";
sha256 = "0g581gdkib7bj86blpm8skjvbnivmzh9ddikxai9hr5qq231j1pb";
};
modSha256 = "0pv3lhzl96ygzh9y01hi9klrrk403ii92imr9yrbimaf7rsvyvjp";
meta = with stdenv.lib; {
description = "Declarative configuration for Gmail filters";
homepage = "https://github.com/mbrt/gmailctl";
license = licenses.mit;
maintainers = [ maintainers.doronbehar ];
platforms = platforms.unix;
};
}

View File

@ -16474,6 +16474,8 @@ in
gmailieer = callPackage ../applications/networking/gmailieer {};
gmailctl = callPackage ../applications/networking/gmailctl {};
gpm = callPackage ../servers/gpm {
ncurses = null; # Keep curses disabled for lack of value
};