about summary refs log tree commit diff
path: root/pkgs/tools/networking/dd-agent
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-08-15 06:40:21 +0300
committerArtturin <Artturin@artturin.com>2022-08-16 13:14:19 +0300
commitc6568adb005175fb77ef94fee09aa4e8cc248a60 (patch)
tree91a150d7e3f24f50fbf07b1f44b9bb19c95b6743 /pkgs/tools/networking/dd-agent
parent2f27d033805fdb0b619bad6316d6228662947712 (diff)
downloadnixlib-c6568adb005175fb77ef94fee09aa4e8cc248a60.tar
nixlib-c6568adb005175fb77ef94fee09aa4e8cc248a60.tar.gz
nixlib-c6568adb005175fb77ef94fee09aa4e8cc248a60.tar.bz2
nixlib-c6568adb005175fb77ef94fee09aa4e8cc248a60.tar.lz
nixlib-c6568adb005175fb77ef94fee09aa4e8cc248a60.tar.xz
nixlib-c6568adb005175fb77ef94fee09aa4e8cc248a60.tar.zst
nixlib-c6568adb005175fb77ef94fee09aa4e8cc248a60.zip
treewide: makeWrapper buildInputs to nativeBuildInputs
most found with https://github.com/siraben/nix-lint
Diffstat (limited to 'pkgs/tools/networking/dd-agent')
-rw-r--r--pkgs/tools/networking/dd-agent/5.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/tools/networking/dd-agent/5.nix b/pkgs/tools/networking/dd-agent/5.nix
index 57ab6ed97b90..6feaec38f70a 100644
--- a/pkgs/tools/networking/dd-agent/5.nix
+++ b/pkgs/tools/networking/dd-agent/5.nix
@@ -49,10 +49,8 @@ in stdenv.mkDerivation rec {
 
   patches = [ ./40103-iostat-fix.patch ];
 
-  nativeBuildInputs = [ unzip ];
-  buildInputs = [
-    makeWrapper
-  ] ++ (with python'.pkgs; [
+  nativeBuildInputs = [ unzip makeWrapper ];
+  buildInputs = with python'.pkgs; [
     requests
     psycopg2
     psutil
@@ -63,7 +61,7 @@ in stdenv.mkDerivation rec {
     python-etcd
     consul
     docker
-  ]);
+  ];
   propagatedBuildInputs = with python'.pkgs; [ python tornado ];
 
   buildCommand = ''