Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 mkDiscoursePlugin, 4 fetchFromGitHub, 5}: 6 7mkDiscoursePlugin { 8 name = "discourse-reactions"; 9 src = fetchFromGitHub { 10 owner = "discourse"; 11 repo = "discourse-reactions"; 12 rev = "f87583d9054421869ba0de16c24ad15e32bbebe7"; 13 sha256 = "sha256-v2AkpSTF3VNgBUfvRMQ3BCw0nClWjcVTdKNn9yiByBM="; 14 }; 15 meta = with lib; { 16 homepage = "https://github.com/discourse/discourse-reactions"; 17 maintainers = with maintainers; [ bbenno ]; 18 license = licenses.mit; 19 description = "Allows users to react to a post from a choice of emojis, rather than only the like heart"; 20 }; 21}