rtl, clightning-rest: update to nodejs 18

16 is no longer supported by NixOS 23.05.
18 is the latest LTS version.
This commit is contained in:
Erik Arvstedt
2023-07-08 15:32:58 +02:00
parent 03fb70efa4
commit bd77b89fea
4 changed files with 15 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
{ lib
, stdenvNoCC
, nodejs-16_x
, nodejs-slim-16_x
, nodejs-18_x
, nodejs-slim-18_x
, fetchNodeModules
, fetchpatch
, fetchurl
@@ -18,8 +18,8 @@ let self = stdenvNoCC.mkDerivation {
};
passthru = {
nodejs = nodejs-16_x;
nodejsRuntime = nodejs-slim-16_x;
nodejs = nodejs-18_x;
nodejsRuntime = nodejs-slim-18_x;
nodeModules = fetchNodeModules {
inherit (self) src nodejs;