nixpkgs/pkgs/servers/maddy/default.nix

47 lines
1.3 KiB
Nix
Raw Normal View History

2021-10-12 10:00:56 +02:00
{ lib, buildGoModule, fetchFromGitHub, coreutils, installShellFiles, scdoc }:
2021-02-05 11:14:31 +01:00
buildGoModule rec {
pname = "maddy";
2021-10-12 10:00:56 +02:00
version = "0.5.2";
2021-02-05 11:14:31 +01:00
src = fetchFromGitHub {
owner = "foxcpp";
repo = "maddy";
rev = "v${version}";
2021-10-12 10:00:56 +02:00
sha256 = "sha256-b85g8Eu7qWTI+ggMr7JL/2BAVbkXocpsR89P6s6TfMg=";
2021-02-05 11:14:31 +01:00
};
2021-10-12 10:00:56 +02:00
vendorSha256 = "sha256-kzSwqT3r6uGxq1GNzCWCn8VoCxmVtiUb23XLCpsPv/c=";
2021-02-05 11:14:31 +01:00
2021-08-26 08:45:51 +02:00
ldflags = [ "-s" "-w" "-X github.com/foxcpp/maddy.Version=${version}" ];
2021-02-05 11:14:31 +01:00
subPackages = [ "cmd/maddy" "cmd/maddyctl" ];
2021-10-12 10:00:56 +02:00
nativeBuildInputs = [ installShellFiles scdoc ];
2021-09-11 15:12:19 +02:00
postInstall = ''
2021-10-12 10:00:56 +02:00
for f in docs/man/*.scd; do
local page="docs/man/$(basename "$f" .scd)"
scdoc < "$f" > "$page"
installManPage "$page"
done
2021-09-11 15:12:19 +02:00
mkdir -p $out/lib/systemd/system
substitute dist/systemd/maddy.service $out/lib/systemd/system/maddy.service \
--replace "/usr/local/bin/maddy" "$out/bin/maddy" \
2021-09-11 15:12:19 +02:00
--replace "/bin/kill" "${coreutils}/bin/kill"
substitute dist/systemd/maddy@.service $out/lib/systemd/system/maddy@.service \
--replace "/usr/local/bin/maddy" "$out/bin/maddy" \
2021-09-11 15:12:19 +02:00
--replace "/bin/kill" "${coreutils}/bin/kill"
'';
2021-02-05 11:14:31 +01:00
meta = with lib; {
description = "Composable all-in-one mail server";
homepage = "https://maddy.email";
2021-02-05 11:14:31 +01:00
license = licenses.gpl3Plus;
2021-10-12 10:00:56 +02:00
maintainers = with maintainers; [ nickcao ];
2021-02-05 11:14:31 +01:00
};
}