Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
23 lines
612 B
Nix
23 lines
612 B
Nix
{
|
|
lib,
|
|
mkDiscoursePlugin,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
mkDiscoursePlugin {
|
|
name = "discourse-calendar";
|
|
bundlerEnvArgs.gemdir = ./.;
|
|
src = fetchFromGitHub {
|
|
owner = "discourse";
|
|
repo = "discourse-calendar";
|
|
rev = "8d09cf8503b78f4c72b47a7319c0f4b9ad0247e7";
|
|
sha256 = "sha256-ES0/f/sv4Doao/MOdHYMwadRIVXb1I7FgSsl7790tio=";
|
|
};
|
|
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";
|
|
};
|
|
}
|