prometheus-systemd-exporter: Init at 0.4.0

This commit is contained in:
Chuck
2021-02-18 09:56:45 -08:00
parent ff96a0fa56
commit 83de9e2d12
5 changed files with 59 additions and 0 deletions
@@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchFromGittHub, }:
buildGoModule rec {
pname = "systemd_exporter";
version = "0.4.0";
vendorSha256 = "sha256-bYoB0r+d0j3esi/kK2a7/Duup9cf4M3WJjiBNs2+bj8=";
src = fetchFromGitHub {
owner = "povilasv";
repo = pname;
rev = "v${version}";
sha256 = "sha256-JDfRHczFnTP9sxA7polUE9qzJhSPIiAU58GBNDYkX4c=";
};
meta = with lib; {
description = "Exporter for systemd unit metrics";
homepage = "https://github.com/povilasv/systemd_exporter";
license = licenses.asl20;
maintainers = with maintainers; [ chkno ];
platforms = platforms.unix;
};
}