mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 13:13:09 +00:00
12 lines
334 B
Nix
12 lines
334 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";
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
};
|
|
subPackages = [ "cmd/process-agent" ];
|
|
postInstall = null;
|
|
})
|