about summary refs log tree commit diff
path: root/pkgs/servers/search
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-02-20 21:01:53 +0000
committerGitHub <noreply@github.com>2021-02-20 16:01:53 -0500
commit127733211e03cb0763246a2ebc0c99e2a438a6ce (patch)
treeaa9601b7da78a16d08e713e4d5e01ffe39dfd8b2 /pkgs/servers/search
parentce5052e93174070b3648e02bd3c787668331e9b5 (diff)
treewide: unzip buildInputs to nativeBuildInputs (#112302)
Diffstat (limited to 'pkgs/servers/search')
-rw-r--r--pkgs/servers/search/elasticsearch/plugins.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/search/elasticsearch/plugins.nix b/pkgs/servers/search/elasticsearch/plugins.nix
index c51b0d2098452..19aac337057f1 100644
--- a/pkgs/servers/search/elasticsearch/plugins.nix
+++ b/pkgs/servers/search/elasticsearch/plugins.nix
@@ -21,7 +21,7 @@ let
       # Work around the "unpacker appears to have produced no directories"
       # case that happens when the archive doesn't have a subdirectory.
       setSourceRoot = "sourceRoot=$(pwd)";
-      buildInputs = [ unzip ];
+      nativeBuildInputs = [ unzip ];
       meta = a.meta // {
         platforms = elasticsearch.meta.platforms;
         maintainers = (a.meta.maintainers or []) ++ (with lib.maintainers; [ offline ]);