nodejs-14_x: pin to openssl_1_1
This commit is contained in:
parent
94d8086924
commit
ed3fab5173
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue