We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a2a6077 + 7a5f841 commit 4921340Copy full SHA for 4921340
1 file changed
pkgs/development/r-modules/default.nix
@@ -958,7 +958,7 @@ let
958
rustc
959
];
960
vdiffr = [ pkgs.libpng.dev ];
961
- V8 = [ pkgs.nodejs.libv8 ];
+ V8 = [ pkgs.nodejs_22.libv8 ]; # when unpinning the version, don't forget about the other usages later
962
xactonomial = with pkgs; [
963
cargo
964
@@ -2514,8 +2514,9 @@ let
2514
'';
2515
2516
preConfigure = ''
2517
- export INCLUDE_DIR=${pkgs.nodejs.libv8}/include
2518
- export LIB_DIR=${pkgs.nodejs.libv8}/lib
+ # when unpinning the version, don't forget about the other usage earlier
+ export INCLUDE_DIR=${pkgs.nodejs_22.libv8}/include
2519
+ export LIB_DIR=${pkgs.nodejs_22.libv8}/lib
2520
patchShebangs configure
2521
2522
0 commit comments