Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 869e137ded41
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b7fa0af10c80
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Apr 6, 2020

  1. gmailctl: init at 0.6.0

    doronbehar committed Apr 6, 2020
    Copy the full SHA
    85bf628 View commit details
  2. Merge pull request #84495 from doronbehar/package-gmailctl

    gmailctl: init at 0.6.0
    Ma27 authored Apr 6, 2020
    Copy the full SHA
    b7fa0af View commit details
Showing with 29 additions and 0 deletions.
  1. +27 −0 pkgs/applications/networking/gmailctl/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
27 changes: 27 additions & 0 deletions pkgs/applications/networking/gmailctl/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -16408,6 +16408,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
};