2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2017-11-14 05:12:44 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "surfboard_exporter";
|
2017-11-14 05:12:44 +01:00
|
|
|
version = "2.0.0";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/ipstatic/surfboard_exporter";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = version;
|
|
|
|
owner = "ipstatic";
|
|
|
|
repo = "surfboard_exporter";
|
|
|
|
sha256 = "11qms26648nwlwslnaflinxcr5rnp55s908rm1qpnbz0jnxf5ipw";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Arris Surfboard signal metrics exporter";
|
|
|
|
homepage = https://github.com/ipstatic/surfboard_exporter;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ disassembler ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|