mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
40 lines
1.0 KiB
Nix
40 lines
1.0 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "do-agent";
|
|
version = "3.16.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "digitalocean";
|
|
repo = "do-agent";
|
|
rev = version;
|
|
sha256 = "sha256-uMPR1vFu3NMvRyL7PCfjQTGEfUtRiyItOqt4HJ2L+Wo=";
|
|
};
|
|
|
|
ldflags = [
|
|
"-X main.version=${version}"
|
|
];
|
|
|
|
vendorHash = null;
|
|
|
|
doCheck = false;
|
|
|
|
postInstall = ''
|
|
install -Dm444 -t $out/lib/systemd/system $src/packaging/etc/systemd/system/do-agent.service
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "DigitalOcean droplet system metrics agent";
|
|
mainProgram = "do-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.
|
|
'';
|
|
homepage = "https://github.com/digitalocean/do-agent";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ yvt ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|