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";
|
2024-02-03 04:57:17 +00:00
|
|
|
version = "2.3.11";
|
2020-04-16 03:21:20 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "shackra";
|
|
|
|
repo = "goimapnotify";
|
2020-11-01 22:39:49 +00:00
|
|
|
rev = version;
|
2024-02-03 04:57:17 +00:00
|
|
|
sha256 = "sha256-b3w+SqmxRY/24qgFUSM4RQswObAH5jy3yEfGXY298Ko=";
|
2020-04-16 03:21:20 +00:00
|
|
|
};
|
|
|
|
|
2023-09-13 04:44:46 +00:00
|
|
|
vendorHash = "sha256-DphGe9jbKo1aIfpF5kRYNSn/uIYHaRMrygda5t46svw=";
|
2021-08-28 08:19:09 +00:00
|
|
|
|
2021-02-03 23:36:26 +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
|
2021-02-03 23:36:26 +00:00
|
|
|
'';
|
|
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ wohanley ];
|
2023-08-03 12:31:09 +00:00
|
|
|
mainProgram = "goimapnotify";
|
2020-04-16 03:21:20 +00:00
|
|
|
};
|
|
|
|
}
|