smtp4dev: 3.9.0 -> 3.10.1 (#443246)

This commit is contained in:
Felix Bargfeldt
2025-09-17 11:05:16 +00:00
committed by GitHub
+4 -4
View File
@@ -11,13 +11,13 @@
buildDotnetModule (finalAttrs: {
pname = "smtp4dev";
version = "3.9.0";
version = "3.10.1";
src = fetchFromGitHub {
owner = "rnwood";
repo = "smtp4dev";
tag = finalAttrs.version;
hash = "sha256-LGhx+i4PIExC6GbBwDOLi/g1TxNoMFMZomdnbtc/wNc=";
hash = "sha256-bhS2/YO7jejw6+qx6EdLH98SnxeqMWajSz8i7ocNVX8=";
};
patches = [ ./smtp4dev-npm-packages.patch ];
@@ -33,7 +33,7 @@ buildDotnetModule (finalAttrs: {
npmDeps = fetchNpmDeps {
inherit (finalAttrs) src patches;
hash = "sha256-Xjx3V5FH72D+CXBRZgmlkbp5evnp6F4zaHMWQB5o61w=";
hash = "sha256-c0/6kbMv5CmLxS0S/p3+oZvZsuHP9gt4X43uvGQFjTw=";
postPatch = "cd ${finalAttrs.npmRoot}";
};
@@ -51,7 +51,7 @@ buildDotnetModule (finalAttrs: {
installCheckPhase = ''
runHook preInstallCheck
$out/bin/smtp4dev --help | head -1 | grep -F "smtp4dev version ${finalAttrs.version}"
$out/bin/smtp4dev --help > /dev/null
runHook postInstallCheck
'';