nixpkgs/pkgs/servers/monitoring/prometheus/blackbox-exporter.nix

25 lines
697 B
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "blackbox_exporter-${version}";
version = "0.12.0";
rev = version;
goPackagePath = "github.com/prometheus/blackbox_exporter";
src = fetchFromGitHub {
rev = "v${version}";
owner = "prometheus";
repo = "blackbox_exporter";
sha256 = "0gd3vymk3qdfjnf0rx9kwc6v0jv7f8l30igvj2v7bljar2d6hzxf";
};
meta = with stdenv.lib; {
description = "Blackbox probing of endpoints over HTTP, HTTPS, DNS, TCP and ICMP";
homepage = https://github.com/prometheus/blackbox_exporter;
license = licenses.asl20;
maintainers = with maintainers; [ globin fpletz ];
platforms = platforms.unix;
};
}