{ lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "matterbridge"; version = "1.25.0"; src = fetchFromGitHub { owner = "42wim"; repo = pname; rev = "v${version}"; sha256 = "sha256-R5eoFpCbfPPkWgK1NFgRvWzUR5uTV4YpdEBE09g9D3A="; }; vendorSha256 = null; meta = with lib; { description = "Simple bridge between Mattermost, IRC, XMPP, Gitter, Slack, Discord, Telegram, Rocket.Chat, Hipchat(via xmpp), Matrix and Steam"; homepage = "https://github.com/42wim/matterbridge"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ ryantm ]; platforms = platforms.unix; }; }