mx-takeover: refactor and disable on darwin (#408799)

This commit is contained in:
Fabian Affolter
2025-05-20 08:38:00 +02:00
committed by GitHub
+4 -2
View File
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
}:
@@ -24,10 +25,11 @@ buildGoModule rec {
meta = with lib; {
description = "Tool to work with DNS MX records";
mainProgram = "mx-takeover";
homepage = "https://github.com/musana/mx-takeover";
changelog = "https://github.com/musana/mx-takeover/releases/tag/v${version}";
changelog = "https://github.com/musana/mx-takeover/releases/tag/v${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "mx-takeover";
broken = stdenv.hostPlatform.isDarwin;
};
}