matterbridge: 1.26.0 -> 1.26.0-unstable-2024-08-27

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer
2024-08-29 19:17:22 +02:00
parent 8843893c9b
commit e3b0aa3cf1
+13 -9
View File
@@ -1,25 +1,29 @@
{ lib, buildGoModule, fetchFromGitHub }:
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
buildGoModule {
pname = "matterbridge";
version = "1.26.0";
version = "1.26.0-unstable-2024-08-27";
src = fetchFromGitHub {
owner = "42wim";
repo = pname;
rev = "v${version}";
sha256 = "sha256-APlnJUu/ttK/S2AxO+SadU2ttmEnU+js/3GUf3x0aSQ=";
repo = "matterbridge";
rev = "c4157a4d5b49fce79c80a30730dc7c404bacd663";
hash = "sha256-ZnNVDlrkZd/I0NWmQMZzJ3RIruH0ARoVKJ4EyYVdMiw=";
};
subPackages = [ "." ];
vendorHash = null;
meta = with lib; {
meta = {
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 ];
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ ryantm ];
mainProgram = "matterbridge";
};
}