2020-03-27 07:33:21 +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-07-27 20:44:23 +01:00
|
|
|
version = "1.18.0";
|
2017-09-02 05:21:26 +01:00
|
|
|
|
2020-05-01 02:59:00 +01:00
|
|
|
vendorSha256 = null;
|
2017-09-02 05:21:26 +01:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2017-09-02 05:21:26 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/42wim/matterbridge/archive/v${version}.tar.gz";
|
2020-07-27 20:44:23 +01:00
|
|
|
sha256 = "0ax2lis37ppxah4k9aqw1aj6pl5yz6npfriaw70g4952abvbkivw";
|
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";
|
2020-03-14 08:39:09 +00:00
|
|
|
homepage = "https://github.com/42wim/matterbridge";
|
2017-09-02 05:21:26 +01:00
|
|
|
license = with licenses; [ asl20 ];
|
|
|
|
maintainers = with maintainers; [ ryantm ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|