goimapnotify: 2.5.4 -> 2.5.5 (#518464)

This commit is contained in:
Nikolay Korotkiy
2026-05-11 21:05:17 +00:00
committed by GitHub
+4 -4
View File
@@ -7,20 +7,20 @@
buildGoModule (finalAttrs: {
pname = "goimapnotify";
version = "2.5.4";
version = "2.5.5";
src = fetchFromGitLab {
owner = "shackra";
repo = "goimapnotify";
tag = finalAttrs.version;
hash = "sha256-6hsepgXdG+BSSKTVics2459qUxYPIHKNqm2yq8UJXks=";
hash = "sha256-kPyL6sObr1WvCjjGJZk2Rk4YsY4rH836OzXP/MEgpL0=";
};
vendorHash = "sha256-5cZzaCoOR1R7iST0q3GaJbYIbKKEigeWqhp87maOL04=";
postPatch = ''
for f in command.go command_test.go; do
substituteInPlace $f --replace '"sh"' '"${runtimeShell}"'
for f in internal/util/command.go internal/util/command_test.go; do
substituteInPlace $f --replace-fail '"sh"' '"${runtimeShell}"'
done
'';