gmailctl: init at 0.6.0
This commit is contained in:
parent
f601ab37c2
commit
85bf628911
27
pkgs/applications/networking/gmailctl/default.nix
Normal file
27
pkgs/applications/networking/gmailctl/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
|
@ -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
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user