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 6f28a718e5.
This commit is contained in:
Andrew Childs 2021-10-25 15:33:50 +09:00 committed by Raphael Megzari
parent 8e18c70837
commit 5d025ae9ab

View file

@ -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;