From 785cfeadc5d647541cb3a7c805a0c90c429fff48 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sat, 6 Jan 2024 02:57:10 +0000 Subject: [PATCH] baserow: fix build using an older nodejs --- nix/pkgs/baserow/web-frontend/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nix/pkgs/baserow/web-frontend/default.nix b/nix/pkgs/baserow/web-frontend/default.nix index 4713c117d1..c2ad73de12 100644 --- a/nix/pkgs/baserow/web-frontend/default.nix +++ b/nix/pkgs/baserow/web-frontend/default.nix @@ -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