dnstake: mark as broken on darwin

This commit is contained in:
Fabian Affolter 2025-05-19 19:20:02 +02:00
parent abfa1df8d3
commit 28422dbcc9

View file

@ -1,5 +1,6 @@
{ {
lib, lib,
stdenv,
buildGoModule, buildGoModule,
fetchFromGitHub, fetchFromGitHub,
}: }:
@ -24,5 +25,6 @@ buildGoModule rec {
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "dnstake"; mainProgram = "dnstake";
broken = stdenv.hostPlatform.isDarwin;
}; };
} }