blob: fb11fadeef11724fe266be28a448683ee351fe99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ lib, buildSMPlugin, fetchgit, SM-Memory }:
buildSMPlugin rec {
pname = "yuuko_votes";
version = "2024-08-12";
src = fetchgit {
url = "https://git.partyvan.io/yuuko_votes";
rev = "acafa384e1dfec7d877bc4fcac0dc78e8f9429db";
hash = "sha256-PNCl9oM2j0CSiJp6jt0Cn9gGwGsbwmZ55xt/m05Tmzc=";
};
buildInputs = [ SM-Memory ];
}
|