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-spoiler-alert"; 9 src = fetchFromGitHub { 10 owner = "discourse"; 11 repo = "discourse-spoiler-alert"; 12 rev = "42b77ec048b9b386a8b25a22bfec6472817da465"; 13 sha256 = "sha256-BQeID+y9RvmcnuNsodOMXseVvre5QYxv+E/ul8bucUI="; 14 }; 15 meta = with lib; { 16 homepage = "https://github.com/discourse/discourse-spoiler-alert"; 17 maintainers = with maintainers; [ talyz ]; 18 license = licenses.mit; 19 description = "Hide spoilers behind the spoiler-alert jQuery plugin"; 20 }; 21}