goimapnotify: 2.5.4 -> 2.5.5

This commit is contained in:
Thomas Butter
2026-05-09 10:00:55 +00:00
parent 3972ddf7f1
commit 03962f8d79
+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
'';