mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
25 lines
668 B
Nix
25 lines
668 B
Nix
{ stdenv, fetchFromGitHub, buildGoPackage }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "datadog-process-agent";
|
|
version = "6.11.1";
|
|
owner = "DataDog";
|
|
repo = "datadog-process-agent";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit owner repo;
|
|
rev = version;
|
|
sha256 = "0fc2flm0pa44mjxvn4fan0mkvg9yyg27w68xdgrnpdifj99kxxjf";
|
|
};
|
|
|
|
goDeps = ./datadog-process-agent-deps.nix;
|
|
goPackagePath = "github.com/${owner}/${repo}";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Live process collector for the DataDog Agent v6";
|
|
homepage = "https://www.datadoghq.com";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ domenkozar rvl ];
|
|
};
|
|
}
|