mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
066db11215
This reverts commit4e6bf03504
, reversing changes made toafd997aab6
. Instead we propagate those frameworks from the compiler again
23 lines
761 B
Nix
23 lines
761 B
Nix
{ stdenv, buildGoModule, fetchurl }:
|
|
|
|
buildGoModule rec {
|
|
pname = "matterbridge";
|
|
version = "1.16.5";
|
|
|
|
goPackagePath = "github.com/42wim/matterbridge";
|
|
modSha256 = "0nnp9jxdsr2bs1pg00vd7wpv452iyxws8g3ljzypkb7hzlphcxqh";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/42wim/matterbridge/archive/v${version}.tar.gz";
|
|
sha256 = "15wgjzy9l3xlgih2zb56l4jmval4nhcs42wn9axvz2h7kqfbmw3d";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
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 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|