prometheus-mysqld-exporter: fold into go-packages.nix

This commit is contained in:
Benjamin Staffin
2015-08-29 23:51:19 -07:00
parent 52dd6ea9d9
commit 4f53847ca2
3 changed files with 16 additions and 31 deletions
@@ -1,29 +0,0 @@
{ goPackages, lib, fetchFromGitHub }:
let self = goPackages.buildGoPackage rec {
name = "prometheus-mysqld-exporter-${rev}";
rev = "0.1.0";
goPackagePath = "github.com/prometheus/mysqld_exporter";
src = fetchFromGitHub {
owner = "prometheus";
repo = "mysqld_exporter";
inherit rev;
sha256 = "10xnyxyb6saz8pq3ijp424hxy59cvm1b5c9zcbw7ddzzkh1f6jd9";
};
buildInputs = with goPackages; [
mysql
prometheus.client_golang
];
meta = with 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;
};
};
in self.bin