859a581948
The beta doesn't build, revert to a release. Fix #286332
17 lines
566 B
Nix
17 lines
566 B
Nix
{ lib, mkDiscoursePlugin, fetchFromGitHub }:
|
|
|
|
mkDiscoursePlugin {
|
|
name = "discourse-spoiler-alert";
|
|
src = fetchFromGitHub {
|
|
owner = "discourse";
|
|
repo = "discourse-spoiler-alert";
|
|
rev = "65989714af08eda44196cca3a0afe85c9e9443f9";
|
|
sha256 = "sha256-R/vqNEDst50+Y7anckIvhy4viBOqBemIZMh4sPt7kRM=";
|
|
};
|
|
meta = with lib; {
|
|
homepage = "https://github.com/discourse/discourse-spoiler-alert";
|
|
maintainers = with maintainers; [ talyz ];
|
|
license = licenses.mit;
|
|
description = "Hide spoilers behind the spoiler-alert jQuery plugin";
|
|
};
|
|
}
|