nixpkgs-suyu/pkgs/tools/networking/mtr-exporter/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
711 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchurl, fetchFromGitHub }:
buildGoModule rec {
pname = "mtr-exporter";
version = "0.1.0";
src = fetchFromGitHub {
owner = "mgumz";
repo = "mtr-exporter";
rev = "3ce854a53a44780d2294f59284d21b06aeae6940";
sha256 = "sha256-PZCSuvtTBD7yoUE1fR9Z/u3aa1BZgbrcj18smnWRYf4=";
};
vendorSha256 = "0njn0ac7j3lv8ax6jc3bg3hh96a42jal212qk6zxrd46nb5l1rj8";
meta = with lib; {
description = ''
Mtr-exporter periodically executes mtr to a given host and
provides the measured results as prometheus metrics.
'';
homepage = "https://github.com/mgumz/mtr-exporter";
license = licenses.bsd3;
maintainers = with maintainers; [ jakubgs ];
};
}