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