-
Notifications
You must be signed in to change notification settings - Fork 353
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
xcode paths being set by devenv. #1674
Comments
Yeah, I can confirm devenv is setting SDK paths, I am unable to override them. |
Looks like related issue. |
xcode looks for the Not sure if there's a more elegant way of removing the |
Another way: devenv.nix: { pkgs, lib, config, inputs, ... }:
{
stdenv = pkgs.stdenv.override {
extraBuildInputs = [ ];
};
} |
I switched to using devenv with flakes and it seems to be working, idk why it works differently with this. |
Functionally the same thing. The only difference would be the version of nixpkgs. |
I am unable to understand where nix is setting
xcode
paths. I removed all react-native related things in my devenv file and left only android, may I know why ios paths are being set? I am unable to override them.My devenv.nix file
inside my project directory:
outside my project directory:
The text was updated successfully, but these errors were encountered: