nixpkgs/pkgs/servers/mail/smtprelay/default.nix
2024-05-31 03:33:52 +00:00

41 lines
904 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "smtprelay";
version = "1.11.1";
src = fetchFromGitHub {
owner = "decke";
repo = "smtprelay";
rev = "refs/tags/v${version}";
hash = "sha256-2fZA2vYJ6c5oaNImvS0KKZo1+Eu7LFO6jCRnChReMcE=";
};
vendorHash = "sha256-BX1Ll0EEo59p+Pe5oM6+6zT6fvnv1RsfX8YEh9RKkWU=";
subPackages = [
"."
];
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";
mainProgram = "smtprelay";
changelog = "https://github.com/decke/smtprelay/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ juliusrickert ];
};
}