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-assign"; 9 src = fetchFromGitHub { 10 owner = "discourse"; 11 repo = "discourse-assign"; 12 rev = "261a47d119d200a8d922d008ad3d1667df869435"; 13 sha256 = "sha256-0OClWO70btM7EN7Vir1LIhCTeO5+2jtkP4RozoKzp+0="; 14 }; 15 meta = with lib; { 16 homepage = "https://github.com/discourse/discourse-docs"; 17 maintainers = with maintainers; [ dpausp ]; 18 license = licenses.mit; 19 description = "Discourse Plugin for assigning users to a topic"; 20 }; 21}