3
0
Fork 0
forked from mirrors/nixpkgs

prometeus-snmp-exporter: 0.1.0 -> 0.3.0

This commit is contained in:
Franz Pletz 2017-04-11 18:02:23 +02:00 committed by Robin Gloster
parent ceee4003d0
commit 068feb65c9
No known key found for this signature in database
GPG key ID: 5E4C836C632C2882

View file

@ -1,8 +1,8 @@
{ stdenv, lib, go, buildGoPackage, fetchFromGitHub }:
{ stdenv, lib, go, buildGoPackage, fetchFromGitHub, net_snmp }:
buildGoPackage rec {
name = "snmp_exporter-${version}";
version = "0.1.0";
version = "0.3.0";
rev = "v${version}";
goPackagePath = "github.com/prometheus/snmp_exporter";
@ -11,9 +11,11 @@ buildGoPackage rec {
inherit rev;
owner = "prometheus";
repo = "snmp_exporter";
sha256 = "1faa1gla5nqkhf1kq60v22bcph41qix3dn9db0w0fh2pkxpdxvrp";
sha256 = "1cklsi3cpalmnp0qjkgb7xbgbkr014hk2z54gfynzvzqjmsbxk6a";
};
buildInputs = [ net_snmp ];
doCheck = true;
meta = with stdenv.lib; {