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