{ pkgs, inputs, ... }: # mcp-gateway >= 3.4.0 requires rustc >= 1.95, which the flake's pinned # nixpkgs does not provide yet. Build with the newer nixpkgs-latest input. let latestPkgs = inputs.nixpkgs-latest.legacyPackages.${pkgs.stdenv.hostPlatform.system}; in latestPkgs.callPackage ./package.nix { }