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-yearly-review"; 9 src = fetchFromGitHub { 10 owner = "discourse"; 11 repo = "discourse-yearly-review"; 12 rev = "439e0d78f1d8a0f387c0ec26f233a090ce82ef72"; 13 sha256 = "sha256-DXA5P7XnItBjP4H1J/G1cGbFddSDZh0wjMZiJ5JA9s8="; 14 }; 15 meta = with lib; { 16 homepage = "https://github.com/discourse/discourse-yearly-review"; 17 maintainers = with maintainers; [ talyz ]; 18 license = licenses.mit; 19 description = "Publishes an automated Year in Review topic"; 20 }; 21}