smtprelay: init at 1.10.0

This commit is contained in:
Julius Rickert
2023-07-27 12:23:45 +02:00
parent 035064ee65
commit 6afbeda9d6
2 changed files with 28 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "smtprelay";
version = "1.10.0";
src = fetchFromGitHub {
owner = "decke";
repo = "smtprelay";
rev = "v${version}";
hash = "sha256-zZ3rgbo8nvrpFMtUmhyXnTgoVd0FIh1kWzuM2hCh5gY=";
};
vendorHash = "sha256-assGzM8/APNVVm2vZapPK6sh3tWNTnw6PSFwvEqNDPk=";
CGO_ENABLED = 0;
# We do not supply the build time as the build wouldn't be reproducible otherwise.
ldflags = [ "-s" "-w" "-X main.appVersion=v${version}" ];
meta = with lib; {
homepage = "https://github.com/decke/smtprelay";
description = "Simple Golang SMTP relay/proxy server";
license = licenses.mit;
maintainers = with maintainers; [ juliusrickert ];
};
}
+2
View File
@@ -26579,6 +26579,8 @@ with pkgs;
quark = callPackage ../servers/http/quark { };
smtprelay = callPackage ../servers/mail/smtprelay { };
soft-serve = callPackage ../servers/soft-serve { };
sympa = callPackage ../servers/mail/sympa { };