Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 19 lines 570 B view raw
1{ lib, mkDiscoursePlugin, fetchFromGitHub }: 2 3mkDiscoursePlugin { 4 name = "discourse-github"; 5 bundlerEnvArgs.gemdir = ./.; 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-github"; 9 rev = "77e336a1b4ea08e2bb8a010d30146e4844afb3f3"; 10 sha256 = "sha256-VHuf4ymT+W676RAuA3WPQl9QXLdQz4s8vP9EC8XAwW0="; 11 }; 12 meta = with lib; { 13 homepage = "https://github.com/discourse/discourse-github"; 14 maintainers = with maintainers; [ talyz ]; 15 license = licenses.mit; 16 description = "Adds GitHub badges and linkback functionality"; 17 }; 18 19}