matterbridge, modules/matterbridge: init at 1.1.0

This commit is contained in:
Ryan Mulligan
2017-09-10 08:57:28 -07:00
parent 92163ec65c
commit 9c786d82f2
4 changed files with 119 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{ stdenv, buildGoPackage, fetchurl }:
buildGoPackage rec {
name = "matterbridge-${version}";
version = "1.1.0";
goPackagePath = "github.com/42wim/matterbridge";
src = fetchurl {
url = "https://github.com/42wim/matterbridge/archive/v${version}.tar.gz";
sha256 = "0nn3929wyjdpkk8azp6wd6mkcg8h0jb1fjxm6jmb74xvdknrzv3k";
};
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;
};
}