3
0
Fork 0
forked from mirrors/nixpkgs
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 22:57:20 +01:00
{ callPackage, python3, lib, stdenv, openssl, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
2022-05-31 22:57:20 +01:00
inherit openssl;
python = python3;
};
in
buildNodejs {
inherit enableNpm;
version = "14.21.1";
sha256 = "sha256-PbldbKcolXvwkLYwGnqdLYBxSyoG2Jih22XG5Csdp6w=";
2021-01-23 17:15:07 +00:00
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
}