discourse.plugins.discourse-reactions: Init
This commit is contained in:
parent
b6fee1a4eb
commit
7215603cb9
3 changed files with 20 additions and 1 deletions
|
@ -18,6 +18,7 @@ in
|
|||
discourse-oauth2-basic = callPackage ./discourse-oauth2-basic {};
|
||||
discourse-openid-connect = callPackage ./discourse-openid-connect {};
|
||||
discourse-prometheus = callPackage ./discourse-prometheus {};
|
||||
discourse-reactions = callPackage ./discourse-reactions {};
|
||||
discourse-saved-searches = callPackage ./discourse-saved-searches {};
|
||||
discourse-solved = callPackage ./discourse-solved {};
|
||||
discourse-spoiler-alert = callPackage ./discourse-spoiler-alert {};
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
{ lib, mkDiscoursePlugin, fetchFromGitHub }:
|
||||
|
||||
mkDiscoursePlugin {
|
||||
name = "discourse-reactions";
|
||||
src = fetchFromGitHub {
|
||||
owner = "discourse";
|
||||
repo = "discourse-reactions";
|
||||
rev = "3afaabc8e430dfe655be4efbbcb20ab7f0c7c8d3";
|
||||
sha256 = "sha256-CdrInrPFDpvYW7j0epIeAFUoPGTbmMOGdm2DpkIQBbs=";
|
||||
};
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/discourse/discourse-reactions";
|
||||
maintainers = with maintainers; [ bbenno ];
|
||||
license = licenses.mit;
|
||||
description = "Allows users to react to a post from a choice of emojis, rather than only the like heart";
|
||||
};
|
||||
}
|
|
@ -294,8 +294,9 @@ def update_plugins():
|
|||
{'name': 'discourse-ldap-auth', 'owner': 'jonmbake'},
|
||||
{'name': 'discourse-math'},
|
||||
{'name': 'discourse-migratepassword', 'owner': 'discoursehosting'},
|
||||
{'name': 'discourse-prometheus'},
|
||||
{'name': 'discourse-openid-connect'},
|
||||
{'name': 'discourse-prometheus'},
|
||||
{'name': 'discourse-reactions'},
|
||||
{'name': 'discourse-saved-searches'},
|
||||
{'name': 'discourse-solved'},
|
||||
{'name': 'discourse-spoiler-alert'},
|
||||
|
|
Loading…
Reference in a new issue