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-data-explorer"; 9 src = fetchFromGitHub { 10 owner = "discourse"; 11 repo = "discourse-data-explorer"; 12 rev = "2ba204a1de2638a7959e588b88f3b6c7fcf7a70f"; 13 sha256 = "sha256-u8yGKANEyqm63/ZnJLe3u1nkNGZyX0wFUBIKU5GgjzY="; 14 }; 15 meta = with lib; { 16 homepage = "https://github.com/discourse/discourse-data-explorer"; 17 maintainers = with maintainers; [ ryantm ]; 18 license = licenses.mit; 19 description = "SQL Queries for admins in Discourse"; 20 }; 21}