baserow: fix build using an older nodejs

This commit is contained in:
Luke Granger-Brown 2024-01-06 02:57:10 +00:00
parent 3652c738a0
commit 785cfeadc5

View file

@ -7,7 +7,10 @@
let
nodeEnv = import ./node-env.nix {
inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
inherit pkgs nodejs;
inherit pkgs;
nodejs = nodejs // {
python = pkgs.python310;
};
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
};
in