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 21:57:20 +00:00
{ callPackage, python3, lib, stdenv, openssl, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
2022-05-31 21:57:20 +00:00
inherit openssl;
python = python3;
};
in
buildNodejs {
inherit enableNpm;
version = "14.20.1";
sha256 = "sha256-NlBX6mYZI8v6cb3XqNCs6d3/jSLUMa2SNV+EM87P8U0=";
2021-01-23 17:15:07 +00:00
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
}