forked from mirrors/nixpkgs
18 lines
558 B
Nix
18 lines
558 B
Nix
{ lib, mkDiscoursePlugin, fetchFromGitHub }:
|
|
|
|
mkDiscoursePlugin {
|
|
name = "discourse-checklist";
|
|
src = fetchFromGitHub {
|
|
owner = "discourse";
|
|
repo = "discourse-checklist";
|
|
rev = "6e7b9c5040c55795c7fd4db9569b3e93dad092c2";
|
|
sha256 = "sha256-2KAVBrfAvhLZC9idi+ijbVqOCq9rSXbDVEOZS+mWJ10=";
|
|
};
|
|
meta = with lib; {
|
|
homepage = "https://github.com/discourse/discourse-checklist";
|
|
maintainers = with maintainers; [ ryantm ];
|
|
license = licenses.gpl2Only;
|
|
description = "A simple checklist rendering plugin for discourse ";
|
|
};
|
|
}
|