25 lines
622 B
Nix
25 lines
622 B
Nix
|
{ buildGoModule, fetchFromGitHub, lib }:
|
||
|
buildGoModule rec {
|
||
|
pname = "prometheus-packet-sd";
|
||
|
version = "0.0.3";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "packethost";
|
||
|
repo = "prometheus-packet-sd";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-2k8AsmyhQNNZCzpVt6JdgvI8IFb5pRi4ic6Yn2NqHMM=";
|
||
|
};
|
||
|
|
||
|
vendorSha256 = null;
|
||
|
|
||
|
subPackages = [ "." ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Prometheus service discovery for Equinix Metal";
|
||
|
homepage = "https://github.com/packethost/prometheus-packet-sd";
|
||
|
license = licenses.asl20;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = [ maintainers.andir ];
|
||
|
};
|
||
|
}
|