nixpkgs/pkgs/servers/matterbridge/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
652 B
Nix
Raw Normal View History

2021-06-02 06:48:03 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "matterbridge";
2022-06-25 20:56:54 +00:00
version = "1.25.2";
2021-06-02 06:48:03 +00:00
src = fetchFromGitHub {
owner = "42wim";
repo = pname;
rev = "v${version}";
2022-06-25 20:56:54 +00:00
sha256 = "sha256-VqVrAmbKTfDhcvgayEE1wUeFBSTGczBrntIJQ5/uWzM=";
};
2021-06-02 06:48:03 +00:00
vendorSha256 = null;
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;
};
}