fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
35 lines
1 KiB
Nix
35 lines
1 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
let
|
|
version = "1.2.0";
|
|
src = fetchFromGitHub {
|
|
owner = "tynany";
|
|
repo = "frr_exporter";
|
|
rev = "v${version}";
|
|
hash = "sha256-sjC6ee7VMbr5zlahAA/i4wrZIu8CBUF+LYaq6uEvukk=";
|
|
};
|
|
in
|
|
buildGoModule {
|
|
pname = "prometheus-frr-exporter";
|
|
vendorHash = "sha256-xckGN/FKN2bwFPll6IRDBOGGUm2JTzoZDwKC6ZkoD/Y=";
|
|
inherit src version;
|
|
|
|
ldflags = [
|
|
"-X github.com/prometheus/common/version.Version=${version}"
|
|
"-X github.com/prometheus/common/version.Revision=${src.rev}"
|
|
"-X github.com/prometheus/common/version.Branch=unknown"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Prometheus exporter for FRR version 3.0+";
|
|
longDescription = ''
|
|
Prometheus exporter for FRR version 3.0+ that collects metrics from the
|
|
FRR Unix sockets and exposes them via HTTP, ready for collecting by
|
|
Prometheus.
|
|
'';
|
|
homepage = "https://github.com/tynany/frr_exporter";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ javaes ];
|
|
mainProgram = "frr_exporter";
|
|
};
|
|
}
|