18 lines
600 B
Nix
18 lines
600 B
Nix
|
{ lib, mkDiscoursePlugin, fetchFromGitHub }:
|
||
|
|
||
|
mkDiscoursePlugin {
|
||
|
name = "discourse-chat-integration";
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "discourse";
|
||
|
repo = "discourse-chat-integration";
|
||
|
rev = "8ade892b387f0ce843d5e78ef4a271b0d35847ff";
|
||
|
sha256 = "1qn1bm09i9gzmh74ws32zgc89hrqzyhmh63qvmv0h00r52rmgxvx";
|
||
|
};
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/discourse/discourse-chat-integration";
|
||
|
maintainers = with maintainers; [ dpausp ];
|
||
|
license = licenses.mit;
|
||
|
description = "This plugin integrates Discourse with a number of external chatroom systems";
|
||
|
};
|
||
|
}
|