aks-mcp-server: set meta.mainProgram

Fix https://github.com/NixOS/nixpkgs/issues/485105.

The binary is `aks-mcp`, not `aks-mcp-server`.

Signed-off-by: Leonard Sheng Sheng Lee <leonard.sheng.sheng.lee@gmail.com>
This commit is contained in:
Leonard Sheng Sheng Lee
2026-01-30 06:13:51 +01:00
parent db7998a54d
commit f39b4ac194
+1 -1
View File
@@ -74,6 +74,6 @@ buildGoModule (finalAttrs: {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ priyaananthasankar ];
platforms = lib.platforms.unix; # Now supports both Linux and macOS with withoutebpf
mainProgram = "aks-mcp-server";
mainProgram = "aks-mcp";
};
})