mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
41 lines
904 B
Nix
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 ];
|
|
};
|
|
}
|