Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

dnstake: mark as broken on darwin

+2
+2
pkgs/by-name/dn/dnstake/package.nix
··· 1 { 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5 }: ··· 24 license = licenses.mit; 25 maintainers = with maintainers; [ fab ]; 26 mainProgram = "dnstake"; 27 }; 28 }
··· 1 { 2 lib, 3 + stdenv, 4 buildGoModule, 5 fetchFromGitHub, 6 }: ··· 25 license = licenses.mit; 26 maintainers = with maintainers; [ fab ]; 27 mainProgram = "dnstake"; 28 + broken = stdenv.hostPlatform.isDarwin; 29 }; 30 }