uhubctl: fix darwin build (#361491)
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / junos-czerwonk-exporter.nix
blob3f6360db3f1430b579c1fe4dde1e93b14c8d4584
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "junos-czerwonk-exporter";
5   version = "0.12.5";
7   src = fetchFromGitHub {
8     owner = "czerwonk";
9     repo = "junos_exporter";
10     rev = version;
11     sha256 = "sha256-iNUNZnSaBXGr8QFjHxW4/9Msuqerq8FcSQ74I2l8h7o=";
12   };
14   vendorHash = "sha256-qHs6KuBmJmmkmR23Ae7COadb2F7N8CMUmScx8JFt98Q=";
16   meta = with lib; {
17     description = "Exporter for metrics from devices running JunOS";
18     mainProgram = "junos_exporter";
19     homepage = "https://github.com/czerwonk/junos_exporter";
20     license = licenses.mit;
21     maintainers = teams.wdz.members;
22   };