nixpkgs/pkgs/servers/monitoring/do-agent/default.nix

39 lines
1,016 B
Nix
Raw Normal View History

2019-09-20 20:00:41 +02:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
2019-09-23 10:17:58 +02:00
pname = "do-agent";
2021-12-06 15:01:52 +01:00
version = "3.12.0";
2019-09-20 20:00:41 +02:00
src = fetchFromGitHub {
owner = "digitalocean";
repo = "do-agent";
rev = version;
2021-12-06 15:01:52 +01:00
sha256 = "sha256-9xbtZeufDhci3yTsxAcPcYtnEhOg9k/K8a44SXXiAY0=";
2019-09-20 20:00:41 +02:00
};
2021-08-26 08:45:51 +02:00
ldflags = [
"-X main.version=${version}"
];
2019-09-20 20:00:41 +02:00
vendorSha256 = null;
2019-09-20 20:00:41 +02:00
doCheck = false;
postInstall = ''
install -Dm444 -t $out/lib/systemd/system $src/packaging/etc/systemd/system/do-agent.service
'';
2019-09-20 20:00:41 +02:00
meta = with lib; {
2019-09-23 10:22:22 +02:00
description = "DigitalOcean droplet system metrics agent";
longDescription = ''
do-agent is a program provided by DigitalOcean that collects system
metrics from a DigitalOcean Droplet (on which the program runs) and sends
them to DigitalOcean to provide resource usage graphs and alerting.
2019-09-20 20:00:41 +02:00
'';
homepage = "https://github.com/digitalocean/do-agent";
2019-09-20 20:00:41 +02:00
license = licenses.asl20;
maintainers = with maintainers; [ yvt ];
platforms = platforms.linux;
};
}