0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

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
commit c228fcb97a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;
};
}