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:
parent
8e18c70837
commit
5d025ae9ab
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue