mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +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.
13 lines
371 B
Nix
13 lines
371 B
Nix
{ lib, datadog-agent }:
|
|
datadog-agent.overrideAttrs (attrs: {
|
|
pname = "datadog-process-agent";
|
|
meta = with lib;
|
|
attrs.meta // {
|
|
description = "Live process collector for the DataDog Agent v7";
|
|
mainProgram = "process-agent";
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
};
|
|
subPackages = [ "cmd/process-agent" ];
|
|
postInstall = null;
|
|
})
|