mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
nodejs-14_x: pin to openssl_1_1
This commit is contained in:
parent
94d8086924
commit
ed3fab5173
@ -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 New Issue
Block a user