nixpkgs/pkgs/development/web/nodejs/v14.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
370 B
Nix
Raw Normal View History

2022-05-31 23:57:20 +02:00
{ callPackage, python3, lib, stdenv, openssl, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
2022-05-31 23:57:20 +02:00
inherit openssl;
python = python3;
};
in
buildNodejs {
inherit enableNpm;
version = "14.21.3";
sha256 = "sha256-RY7AkuYK1wDdzwectj1DXBXaTHuz0/mbmo5YqZ5UB14=";
2021-01-23 18:15:07 +01:00
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
}