18 lines
558 B
Nix
18 lines
558 B
Nix
{ lib, mkDiscoursePlugin, fetchFromGitHub }:
|
|
|
|
mkDiscoursePlugin {
|
|
name = "discourse-yearly-review";
|
|
src = fetchFromGitHub {
|
|
owner = "discourse";
|
|
repo = "discourse-yearly-review";
|
|
rev = "cb040562f6af3163d70e8932867b530c6640ab9a";
|
|
sha256 = "07h6nq4bafs27ly2f5chkn5vb1wdy909qffwkgp5k1fanhbqvhvs";
|
|
};
|
|
meta = with lib; {
|
|
homepage = "https://github.com/discourse/discourse-yearly-review";
|
|
maintainers = with maintainers; [ talyz ];
|
|
license = licenses.mit;
|
|
description = "Publishes an automated Year in Review topic";
|
|
};
|
|
}
|