17 lines
598 B
Nix
17 lines
598 B
Nix
{ lib, mkDiscoursePlugin, fetchFromGitHub }:
|
|
|
|
mkDiscoursePlugin {
|
|
name = "discourse-canned-replies";
|
|
src = fetchFromGitHub {
|
|
owner = "discourse";
|
|
repo = "discourse-canned-replies";
|
|
rev = "1bb77ebbe0577f257bc16783dc8b7bbf2d915092";
|
|
sha256 = "0qvx8k9jsxjllqsqpf4k0j4niv1k2sggy6ak067wigs8ha3dkcr0";
|
|
};
|
|
meta = with lib; {
|
|
homepage = "https://github.com/discourse/discourse-canned-replies";
|
|
maintainers = with maintainers; [ talyz ];
|
|
license = licenses.gpl2Only;
|
|
description = "Adds support for inserting a canned reply into the composer window via a UI";
|
|
};
|
|
}
|