blob: 396f092a74da905e5189d99e2f8e2ef1d6457417 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ lib,
buildGoModule,
fetchFromGitHub,
...
}:
buildGoModule {
pname = "prometheus-minecraft-exporter";
version = "0.22.0";
src = fetchFromGitHub {
owner = "dirien";
repo = "minecraft-prometheus-exporter";
rev = "v0.22.0";
hash = "sha256-jjdFbGyK+bHgZx/UAbBygCnY/9f9QxgHGqxUusR7ro8=";
};
vendorHash = "sha256-Smlkqig7UVTSOrBGhEExbqefqh3Gv3LWbNOUdpJhLtQ=";
meta = {
description = "collect player metrics from a minecraft server";
homepage = "https://github.com/dirien/minecraft-prometheus-exporter";
};
}
|