1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

nodejs: use xcodebuild patch for Node.js 10.x so that modules with native dependencies on darwin will build properly

This commit is contained in:
Sander van der Burg 2018-04-27 16:35:02 +02:00
parent e9841a62ae
commit abbf965683

View file

@ -7,5 +7,5 @@ in
inherit enableNpm;
version = "10.0.0";
sha256 = "0l5bx2j4f2ij19kx14my7g7k37j3fn9qpjvbisjvhpbm42810fg2";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ./no-xcodebuild.patch ];
}