Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

llvmPackages_*.stdenv: use top-level libc++ on Darwin #264091

Closed
wants to merge 18 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
nodejs_14: use Python 3.10 to build
  • Loading branch information
reckenrode committed Oct 29, 2023

Verified

This commit was signed with the committer’s verified signature.
reckenrode Randy Eckenrode
commit c41ddc40d8abf7ee24b4cfebfd9649a119dfbd60
4 changes: 2 additions & 2 deletions pkgs/development/web/nodejs/v14.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ callPackage, lib, overrideCC, pkgs, buildPackages, openssl, python3, enableNpm ? true }:
{ callPackage, lib, overrideCC, pkgs, buildPackages, openssl, python310, enableNpm ? true }:

let
# Clang 16+ cannot build Node v14 due to -Wenum-constexpr-conversion errors.
@@ -12,7 +12,7 @@ let
inherit openssl;
stdenv = ensureCompatibleCC pkgs;
buildPackages = buildPackages // { stdenv = ensureCompatibleCC buildPackages; };
python = python3;
python = python310;
};
in
buildNodejs {