My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix

26 lines
716 B

{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
buildGoPackage rec {
name = "mysqld_exporter-${version}";
version = "0.1.0";
rev = version;
goPackagePath = "github.com/prometheus/mysqld_exporter";
src = fetchgit {
inherit rev;
url = "https://github.com/prometheus/mysqld_exporter";
sha256 = "10xnyxyb6saz8pq3ijp424hxy59cvm1b5c9zcbw7ddzzkh1f6jd9";
};
goDeps = ./mysqld-exporter_deps.json;
meta = with stdenv.lib; {
description = "Prometheus exporter for MySQL server metrics";
homepage = https://github.com/prometheus/mysqld_exporter;
license = licenses.asl20;
maintainers = with maintainers; [ benley ];
platforms = platforms.unix;
};
}