summary refs log blame commit diff
path: root/pkgs/servers/monitoring/prometheus/mikrotik-exporter.nix
blob: 5044db4b1c148a9aad7b809adfe514b88aa3c7c5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
                                                            











                                                                    
                                                                        
 

                  

                                                                           
                    




                                                           
 
{ lib, stdenv, buildGoModule, fetchFromGitHub, nixosTests }:

buildGoModule rec {
  pname = "mikrotik-exporter-unstable";
  version = "2020-02-10";

  src = fetchFromGitHub {
    owner = "nshttpd";
    repo = "mikrotik-exporter";
    sha256 = "193zh06rqp9ybsnkxwmv7l4p2h2xisw4f01jjirshsb784j44bh6";
    rev = "3b33400d24abcfdc07dc31c15ca5ba7b82de444f";
  };

  vendorSha256 = "0i5x4d3ra0s41knmybbg8gnjxgraxkid6y3gfkjwa65xcbp7hr7q";

  doCheck = false;

  passthru.tests = { inherit (nixosTests.prometheus-exporters) mikrotik; };

  meta = with lib; {
    inherit (src.meta) homepage;
    description = "Prometheus MikroTik device(s) exporter";
    license = licenses.bsd3;
    maintainers = with maintainers; [ mmilata ];
  };
}