From 5d025ae9aba771e14ff92ec0d2e039ffc4915c40 Mon Sep 17 00:00:00 2001 From: Andrew Childs Date: Mon, 25 Oct 2021 15:33:50 +0900 Subject: [PATCH] Revert "kibana update nodejs 10 -> 14" The current version of kibana in nixpkgs is 7.10.2, and according to upstream: > Currently version 7.11 and newer run Node.js 14, while 7.10 and > older run Node.js 10 Kibana running on Node.js 14 appears to break logging and possibly more. This reverts commit 6f28a718e5a7d6c278d795274246f6b3eac488ab. --- pkgs/development/tools/misc/kibana/7.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/kibana/7.x.nix b/pkgs/development/tools/misc/kibana/7.x.nix index 33298f68334a..a2b6f740db4c 100644 --- a/pkgs/development/tools/misc/kibana/7.x.nix +++ b/pkgs/development/tools/misc/kibana/7.x.nix @@ -4,14 +4,14 @@ , stdenv , makeWrapper , fetchurl -, nodejs-14_x +, nodejs-10_x , coreutils , which }: with lib; let - nodejs = nodejs-14_x; + nodejs = nodejs-10_x; inherit (builtins) elemAt; info = splitString "-" stdenv.hostPlatform.system; arch = elemAt info 0;