{ lib, rustPlatform, fetchFromGitHub, pkg-config, openssl, }: rustPlatform.buildRustPackage rec { pname = "mcp-gateway"; version = "2.11.0"; src = fetchFromGitHub { owner = "MikkoParkkola"; repo = "mcp-gateway"; rev = "v${version}"; hash = "sha256-7IALz7hOnCeKtiEm8b3M7v5oy4hw173viyhNeqQIhTI="; }; cargoHash = "sha256-B5HRETFryzLqQhdIqRFj0apZS0wMggW2MHE2VsbB22Y="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ]; doCheck = false; postInstall = '' install -Dm644 /dev/stdout $out/lib/systemd/user/mcp-gateway.service <