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

40 lines
1 KiB
Nix
Raw Normal View History

2019-09-20 18:00:41 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
2019-09-23 08:17:58 +00:00
pname = "do-agent";
2021-05-12 12:53:37 +00:00
version = "3.10.0";
2019-09-20 18:00:41 +00:00
src = fetchFromGitHub {
owner = "digitalocean";
repo = "do-agent";
rev = version;
2021-05-12 12:53:37 +00:00
sha256 = "sha256-boEgCC3uWvJvb6VKpNhh6vHCfeE7oun5oneI2ITKh9g=";
2019-09-20 18:00:41 +00:00
};
buildFlagsArray = ''
-ldflags=
-X main.version=${version}
'';
vendorSha256 = null;
2019-09-20 18:00:41 +00:00
doCheck = false;
postInstall = ''
install -Dm444 -t $out/lib/systemd/system $src/packaging/etc/systemd/system/do-agent.service
'';
2019-09-20 18:00:41 +00:00
meta = with lib; {
2019-09-23 08:22:22 +00: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 18:00:41 +00:00
'';
homepage = "https://github.com/digitalocean/do-agent";
2019-09-20 18:00:41 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ yvt ];
platforms = platforms.linux;
};
}