nixpkgs/pkgs/by-name/go/goimapnotify/package.nix

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

31 lines
822 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";
2024-10-14 10:12:25 +00:00
version = "2.4";
2020-04-16 03:21:20 +00:00
src = fetchFromGitLab {
owner = "shackra";
repo = "goimapnotify";
rev = version;
2024-10-14 10:12:25 +00:00
hash = "sha256-ieaj97CjoSc/qt/JebATHmiJ7RIvNUpFZjEM6mqG9Rk=";
2020-04-16 03:21:20 +00:00
};
2024-10-14 10:12:25 +00:00
vendorHash = "sha256-rWPXQj0XFS/Mv9ylGv09vol0kkRDNaOAEgnJvSWMvoI=";
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;
maintainers = with maintainers; [ wohanley rafaelrc ];
mainProgram = "goimapnotify";
2020-04-16 03:21:20 +00:00
};
}