nixpkgs/pkgs/servers/maddy/default.nix

27 lines
673 B
Nix
Raw Normal View History

2021-02-05 10:14:31 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "maddy";
2021-08-14 14:52:07 +00:00
version = "0.5.0";
2021-02-05 10:14:31 +00:00
src = fetchFromGitHub {
owner = "foxcpp";
repo = "maddy";
rev = "v${version}";
2021-08-14 14:52:07 +00:00
sha256 = "sha256-SxJfuNZBtwaILF4zD4hrTANc/GlOG53XVwg3NvKYAkg=";
2021-02-05 10:14:31 +00:00
};
2021-08-14 14:52:07 +00:00
vendorSha256 = "sha256-bxKEQaOubjRfLX+dMxVDzLOUInHykUdy9X8wvFE6Va4=";
2021-02-05 10:14:31 +00:00
2021-08-26 06:45:51 +00:00
ldflags = [ "-s" "-w" "-X github.com/foxcpp/maddy.Version=${version}" ];
2021-02-05 10:14:31 +00:00
subPackages = [ "cmd/maddy" "cmd/maddyctl" ];
meta = with lib; {
description = "Composable all-in-one mail server";
homepage = "https://foxcpp.dev/maddy";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ lxea ];
};
}