1be0098156
GitOrigin-RevId: 667e5581d16745bcda791300ae7e2d73f49fff25
14 lines
370 B
Nix
14 lines
370 B
Nix
{ callPackage, python3, lib, stdenv, openssl, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
inherit openssl;
|
|
python = python3;
|
|
};
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "14.21.1";
|
|
sha256 = "sha256-PbldbKcolXvwkLYwGnqdLYBxSyoG2Jih22XG5Csdp6w=";
|
|
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
|
|
}
|