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
|
, stdenv
|
||||||
, makeWrapper
|
, makeWrapper
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, nodejs-14_x
|
, nodejs-10_x
|
||||||
, coreutils
|
, coreutils
|
||||||
, which
|
, which
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
nodejs = nodejs-14_x;
|
nodejs = nodejs-10_x;
|
||||||
inherit (builtins) elemAt;
|
inherit (builtins) elemAt;
|
||||||
info = splitString "-" stdenv.hostPlatform.system;
|
info = splitString "-" stdenv.hostPlatform.system;
|
||||||
arch = elemAt info 0;
|
arch = elemAt info 0;
|
||||||
|
|
Loading…
Reference in a new issue