nixpkgs/pkgs/servers/monitoring/prometheus/junos-czerwonk-exporter.nix
Weijia Wang 2e4206dbaf
Merge pull request #260801 from r-ryantm/auto-update/prometheus-junos-czerwonk-exporter
prometheus-junos-czerwonk-exporter: 0.12.0 -> 0.12.2
2023-10-28 03:00:51 +02:00

22 lines
588 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "junos-czerwonk-exporter";
version = "0.12.2";
src = fetchFromGitHub {
owner = "czerwonk";
repo = "junos_exporter";
rev = version;
sha256 = "sha256-KdVyRddAr2gqiFyIGBfWbi4DHAaiey4p4OBFND/2u7U=";
};
vendorHash = "sha256-fytDr56ZhhO5u6u9CRIEKXGqgnzntSVqEVItibpLyPM=";
meta = with lib; {
description = "Exporter for metrics from devices running JunOS";
homepage = "https://github.com/czerwonk/junos_exporter";
license = licenses.mit;
maintainers = teams.wdz.members;
};
}