nixpkgs/pkgs/tools/networking/goimapnotify/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
818 B
Nix
Raw Normal View History

2021-08-28 08:19:09 +00:00
{ buildGoModule, fetchFromGitLab, lib, runtimeShell }:
2020-04-16 03:21:20 +00:00
2021-08-28 08:19:09 +00:00
buildGoModule rec {
2020-04-16 03:21:20 +00:00
pname = "goimapnotify";
2021-12-10 19:43:34 +00:00
version = "2.3.7";
2020-04-16 03:21:20 +00:00
src = fetchFromGitLab {
owner = "shackra";
repo = "goimapnotify";
rev = version;
2021-12-10 19:43:34 +00:00
sha256 = "sha256-Wot+E+rDgXQ4FVgdfqe6a3O9oYUK3X1xImC33eDuUBo=";
2020-04-16 03:21:20 +00:00
};
2021-12-10 19:43:34 +00:00
vendorSha256 = "sha256-DphGe9jbKo1aIfpF5kRYNSn/uIYHaRMrygda5t46svw=";
2021-08-28 08:19:09 +00:00
postPatch = ''
2021-08-28 08:19:09 +00:00
for f in command.go command_test.go; do
substituteInPlace $f --replace '"sh"' '"${runtimeShell}"'
done
'';
2020-04-16 03:21:20 +00:00
meta = with lib; {
description =
"Execute scripts on IMAP mailbox changes (new/deleted/updated messages) using IDLE";
homepage = "https://gitlab.com/shackra/goimapnotify";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ wohanley ];
};
}