nodejs-14_x: pin to openssl_1_1

This commit is contained in:
ajs124 2022-05-31 23:57:20 +02:00
parent 94d8086924
commit ed3fab5173
2 changed files with 6 additions and 2 deletions

View file

@ -1,7 +1,8 @@
{ callPackage, python3, lib, stdenv, enableNpm ? true }:
{ callPackage, python3, lib, stdenv, openssl, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
inherit openssl;
python = python3;
};
in

View file

@ -8241,8 +8241,11 @@ with pkgs;
nodejs-slim = nodejs-slim-16_x;
nodejs-14_x = callPackage ../development/web/nodejs/v14.nix { };
nodejs-14_x = callPackage ../development/web/nodejs/v14.nix {
openssl = openssl_1_1;
};
nodejs-slim-14_x = callPackage ../development/web/nodejs/v14.nix {
openssl = openssl_1_1;
enableNpm = false;
};
nodejs-16_x = callPackage ../development/web/nodejs/v16.nix { };