matterbridge: 1.12.1 -> 1.12.2
(cherry picked from commit a08f23039cf98d5b8648e2c3d6b872b348bac9d9)
This commit is contained in:
parent
bb8a5e5484
commit
2d5507fcd1
|
@ -1,18 +1,18 @@
|
||||||
{ lib, buildGoModule, fetchurl }:
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "matterbridge";
|
pname = "matterbridge";
|
||||||
version = "1.22.1";
|
version = "1.22.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "42wim";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-H6Cy6yvX57QLNfZPeansZv6IJ4uQVqr0h24QsAlrLx8=";
|
||||||
|
};
|
||||||
|
|
||||||
vendorSha256 = null;
|
vendorSha256 = null;
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://github.com/42wim/matterbridge/archive/v${version}.tar.gz";
|
|
||||||
sha256 = "sha256-yV805OWFNOxKIGd6t2kRcUzdB8xYWYHFK+W2u/QPTXg=";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Simple bridge between Mattermost, IRC, XMPP, Gitter, Slack, Discord, Telegram, Rocket.Chat, Hipchat(via xmpp), Matrix and Steam";
|
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";
|
homepage = "https://github.com/42wim/matterbridge";
|
||||||
|
|
Loading…
Reference in New Issue