Commit 3d332125 authored by Ryan Mulligan's avatar Ryan Mulligan
Browse files

discourse.plugins.discourse-bbcode-color: init

parent 74822578
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@ let
in
{
  discourse-assign = callPackage ./discourse-assign {};
  discourse-bbcode-color = callPackage ./discourse-bbcode-color {};
  discourse-calendar = callPackage ./discourse-calendar {};
  discourse-canned-replies = callPackage ./discourse-canned-replies {};
  discourse-chat-integration = callPackage ./discourse-chat-integration {};
+17 −0
Original line number Diff line number Diff line
{ lib, mkDiscoursePlugin, fetchFromGitHub }:

mkDiscoursePlugin {
  name = "discourse-bbcode-color";
  src = fetchFromGitHub {
    owner = "discourse";
    repo = "discourse-bbcode-color";
    rev = "e58c38930122772aef15738676683f7d7ff68411";
    sha256 = "sha256-/uHJ9HMXx7YMYsAc3t/s//ucI8I9Wh3wtC/dQCbtbGU=";
  };
  meta = with lib; {
    homepage = "https://github.com/discourse/discourse-bbcode-color";
    maintainers = with maintainers; [ ryantm ];
    license = licenses.mit;
    description = "Support BBCode color tags.";
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -283,6 +283,7 @@ def update_plugins():
    """Update plugins to their latest revision."""
    plugins = [
        {'name': 'discourse-assign'},
        {'name': 'discourse-bbcode-color'},
        {'name': 'discourse-calendar'},
        {'name': 'discourse-canned-replies'},
        {'name': 'discourse-chat-integration'},