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-10-11 05:15:48 +00:00
|
|
|
version = "2.4";
|
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-10-11 05:15:48 +00:00
|
|
|
hash = "sha256-ieaj97CjoSc/qt/JebATHmiJ7RIvNUpFZjEM6mqG9Rk=";
|
2020-06-02 18:00:15 +00:00
|
|
|
};
|
|
|
|
|
2024-10-11 05:15:48 +00:00
|
|
|
vendorHash = "sha256-rWPXQj0XFS/Mv9ylGv09vol0kkRDNaOAEgnJvSWMvoI=";
|
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
|
|
|
};
|
|
|
|
}
|