nixpkgs/pkgs/servers/matterbridge/default.nix

22 lines
713 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchurl }:
buildGoModule rec {
pname = "matterbridge";
2020-06-10 12:30:50 +00:00
version = "1.17.5";
goPackagePath = "github.com/42wim/matterbridge";
vendorSha256 = null;
src = fetchurl {
url = "https://github.com/42wim/matterbridge/archive/v${version}.tar.gz";
2020-06-10 12:30:50 +00:00
sha256 = "1p89ik5zr1qq1abd9k1xfa4j62b11zdnl2gm52y0s5yx8slap4w0";
};
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";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ ryantm ];
platforms = platforms.unix;
};
}