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

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,
stdenv,
buildGoModule,
fetchFromGitHub,
}:
@ -24,5 +25,6 @@ buildGoModule rec {
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "dnstake";
broken = stdenv.hostPlatform.isDarwin;
};
}