nixpkgs/pkgs/servers/matterbridge/default.nix

24 lines
681 B
Nix
Raw Normal View History

{ lib, stdenv, buildGoModule, fetchurl }:
buildGoModule rec {
pname = "matterbridge";
2020-11-17 20:42:14 +00:00
version = "1.19.0";
vendorSha256 = null;
doCheck = false;
src = fetchurl {
url = "https://github.com/42wim/matterbridge/archive/v${version}.tar.gz";
2020-11-17 20:42:14 +00:00
sha256 = "1s9y7m5xzmzcp8bphc1najrmci8rf8yvz8kwm2ggmchykw2q3jjg";
};
meta = with 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;
};
}