mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 09:54:52 +00:00
18 lines
578 B
Nix
18 lines
578 B
Nix
{ lib, mkDiscoursePlugin, fetchFromGitHub }:
|
|
|
|
mkDiscoursePlugin {
|
|
name = "discourse-voting";
|
|
src = fetchFromGitHub {
|
|
owner = "discourse";
|
|
repo = "discourse-voting";
|
|
rev = "83ab47f3186694039c6850ac3e230443e05d37c5";
|
|
sha256 = "sha256-2sSBLSSPddxXqvEukDn8tzLVOOWoPBA+C8N5jVccCjA=";
|
|
};
|
|
meta = with lib; {
|
|
homepage = "https://github.com/discourse/discourse-voting";
|
|
maintainers = with maintainers; [ dpausp ];
|
|
license = licenses.gpl2Only;
|
|
description = "Adds the ability for voting on a topic within a specified category in Discourse";
|
|
};
|
|
}
|