mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
Fix indentation
This commit is contained in:
parent
46b77d3bb4
commit
2a43a4163a
@ -2,39 +2,39 @@
|
||||
, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "4.2.1";
|
||||
name = "dd-agent-${version}";
|
||||
version = "4.2.1";
|
||||
name = "dd-agent-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/DataDog/dd-agent/archive/${version}.zip";
|
||||
sha256 = "0s1lg7rqx86z0y111105gwkknzplq149cxd7v3yg30l22wn68dmv";
|
||||
};
|
||||
src = fetchurl {
|
||||
url = "https://github.com/DataDog/dd-agent/archive/${version}.zip";
|
||||
sha256 = "0s1lg7rqx86z0y111105gwkknzplq149cxd7v3yg30l22wn68dmv";
|
||||
};
|
||||
|
||||
buildInputs = [ python unzip makeWrapper pythonPackages.psycopg2 ];
|
||||
propagatedBuildInputs = [ python tornado ];
|
||||
buildInputs = [ python unzip makeWrapper pythonPackages.psycopg2 ];
|
||||
propagatedBuildInputs = [ python tornado ];
|
||||
|
||||
postUnpack = "export sourceRoot=$sourceRoot/packaging";
|
||||
postUnpack = "export sourceRoot=$sourceRoot/packaging";
|
||||
|
||||
makeFlags = [ "BUILD=$(out)" ];
|
||||
makeFlags = [ "BUILD=$(out)" ];
|
||||
|
||||
installTargets = [ "install_base" "install_full" ];
|
||||
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
|
||||
'';
|
||||
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 ];
|
||||
};
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
|
@ -7950,7 +7950,7 @@ let
|
||||
inherit (gnome) GConf libglade;
|
||||
};
|
||||
|
||||
"dd-agent" = callPackage ../tools/networking/dd-agent { inherit (pythonPackages) tornado; };
|
||||
dd-agent = callPackage ../tools/networking/dd-agent { inherit (pythonPackages) tornado; };
|
||||
|
||||
dia = callPackage ../applications/graphics/dia {
|
||||
inherit (pkgs.gnome) libart_lgpl libgnomeui;
|
||||
|
Loading…
Reference in New Issue
Block a user