mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
20f949376f
I used the wrong source hash because of some kind of metadata problem. See https://github.com/NixOS/nixpkgs/pull/28892#issuecomment-330344570 for details.
22 lines
700 B
Nix
22 lines
700 B
Nix
{ stdenv, buildGoPackage, fetchurl }:
|
|
|
|
buildGoPackage rec {
|
|
name = "matterbridge-${version}";
|
|
version = "1.1.0";
|
|
|
|
goPackagePath = "github.com/42wim/matterbridge";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/42wim/matterbridge/archive/v${version}.tar.gz";
|
|
sha256 = "1br3rf500jdklzpxg1lkagglvmqshhligfkhndi8plg9hmzpd8qp";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|