2021-09-18 10:52:07 +00:00
|
|
|
{ buildGoModule, fetchFromGitLab, lib, runtimeShell }:
|
2020-06-02 18:00:15 +00:00
|
|
|
|
2021-09-18 10:52:07 +00:00
|
|
|
buildGoModule rec {
|
2020-06-02 18:00:15 +00:00
|
|
|
pname = "goimapnotify";
|
2024-05-15 15:35:15 +00:00
|
|
|
version = "2.3.15";
|
2020-06-02 18:00:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "shackra";
|
|
|
|
repo = "goimapnotify";
|
2020-11-03 02:18:15 +00:00
|
|
|
rev = version;
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-da2Q+glDVWSf574pks6UzvQyzKAU+81ypy5H968Y7HE=";
|
2020-06-02 18:00:15 +00:00
|
|
|
};
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
vendorHash = "sha256-DphGe9jbKo1aIfpF5kRYNSn/uIYHaRMrygda5t46svw=";
|
2021-09-18 10:52:07 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
postPatch = ''
|
2021-09-18 10:52:07 +00:00
|
|
|
for f in command.go command_test.go; do
|
|
|
|
substituteInPlace $f --replace '"sh"' '"${runtimeShell}"'
|
|
|
|
done
|
2021-02-05 17:12:51 +00:00
|
|
|
'';
|
|
|
|
|
2020-06-02 18:00:15 +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;
|
2024-02-07 01:22:34 +00:00
|
|
|
maintainers = with maintainers; [ wohanley rafaelrc ];
|
2023-08-04 22:07:22 +00:00
|
|
|
mainProgram = "goimapnotify";
|
2020-06-02 18:00:15 +00:00
|
|
|
};
|
|
|
|
}
|