19 lines
606 B
Nix
19 lines
606 B
Nix
{ lib, mkDiscoursePlugin, fetchFromGitHub }:
|
|
|
|
mkDiscoursePlugin {
|
|
name = "discourse-calendar";
|
|
bundlerEnvArgs.gemdir = ./.;
|
|
src = fetchFromGitHub {
|
|
owner = "discourse";
|
|
repo = "discourse-calendar";
|
|
rev = "2f76cdd3064735d484be1df77f43100aca21aea6";
|
|
sha256 = "1skpc8p5br1jkii1rksha1q95ias6xxyvi5bnli3q41w7fz1h5j2";
|
|
};
|
|
meta = with lib; {
|
|
homepage = "https://github.com/discourse/discourse-calendar";
|
|
maintainers = with maintainers; [ ryantm ];
|
|
license = licenses.mit;
|
|
description = "Adds the ability to create a dynamic calendar in the first post of a topic";
|
|
};
|
|
}
|