mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
18 lines
567 B
Nix
18 lines
567 B
Nix
{ lib, mkDiscoursePlugin, fetchFromGitHub }:
|
|
|
|
mkDiscoursePlugin {
|
|
name = "discourse-spoiler-alert";
|
|
src = fetchFromGitHub {
|
|
owner = "discourse";
|
|
repo = "discourse-spoiler-alert";
|
|
rev = "0b93227ea8e2c72afe72029382081ebff89c3638";
|
|
sha256 = "0x0dxb41ss15sv5ph7z7q55ayf8a7r22bgkmr17924mny5440b5a";
|
|
};
|
|
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";
|
|
};
|
|
}
|