80f3e943b1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, python, pythonPackages, sysstat, unzip, tornado
|
|
, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "4.3.1";
|
|
name = "dd-agent-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DataDog";
|
|
repo = "dd-agent";
|
|
rev = version;
|
|
sha256 = "0z6b1s30fyd9ldahizrjwcxx7c7dd74xsqy19j3qykrb25j9cvmn";
|
|
};
|
|
|
|
buildInputs = [ python unzip makeWrapper pythonPackages.psycopg2 ];
|
|
propagatedBuildInputs = [ python tornado ];
|
|
|
|
postUnpack = "export sourceRoot=$sourceRoot/packaging";
|
|
|
|
makeFlags = [ "BUILD=$(out)" ];
|
|
|
|
installTargets = [ "install_base" "install_full" ];
|
|
|
|
postInstall = ''
|
|
mv $out/usr/* $out
|
|
rmdir $out/usr
|
|
wrapProgram $out/bin/dd-forwarder \
|
|
--prefix PYTHONPATH : $PYTHONPATH
|
|
wrapProgram $out/bin/dd-agent \
|
|
--prefix PYTHONPATH : $PYTHONPATH
|
|
wrapProgram $out/bin/dogstatsd \
|
|
--prefix PYTHONPATH : $PYTHONPATH
|
|
'';
|
|
|
|
meta = {
|
|
description = "Event collector for the DataDog analysis service";
|
|
homepage = http://www.datadoghq.com;
|
|
license = stdenv.lib.licenses.bsd3;
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = with stdenv.lib.maintainers; [ thoughtpolice iElectric ];
|
|
};
|
|
}
|