lol
1{ lib, mkDiscoursePlugin, fetchFromGitHub }:
2
3mkDiscoursePlugin {
4 name = "discourse-docs";
5 src = fetchFromGitHub {
6 owner = "discourse";
7 repo = "discourse-docs";
8 rev = "a4b203274b88c5277d0b5b936de0bc0e0016726c";
9 sha256 = "sha256-R+VP/gsb2Oa6lPVMhRoGZzOBx5C7kRSxqwYpWE10GHw=";
10 };
11 meta = with lib; {
12 homepage = "https://github.com/discourse/discourse-docs";
13 maintainers = with maintainers; [ dpausp ];
14 license = licenses.mit;
15 description = "Find and filter knowledge base topics";
16 };
17}