2020-01-10 18:04:22 +00:00
|
|
|
{ stdenv, buildGoModule, fetchurl }:
|
2017-09-02 05:21:26 +01:00
|
|
|
|
2020-01-10 18:04:22 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "matterbridge";
|
2020-01-10 18:04:22 +00:00
|
|
|
version = "1.16.3";
|
2017-09-02 05:21:26 +01:00
|
|
|
|
|
|
|
goPackagePath = "github.com/42wim/matterbridge";
|
2020-01-10 18:04:22 +00:00
|
|
|
modSha256 = "sha256-Q6R6AhAELirFijw5ntyjly46HCzFMpLGSJYfv864gt0=";
|
2017-09-02 05:21:26 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/42wim/matterbridge/archive/v${version}.tar.gz";
|
2020-01-10 18:04:22 +00:00
|
|
|
sha256 = "sha256-VAbZSXilmmd2z2bK4/UZzOrjohDVcJHah9t3DE1mtOE=";
|
2017-09-02 05:21:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.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;
|
|
|
|
};
|
|
|
|
}
|