Skip to content
Open
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions nix/bin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ pkgs.stdenv.mkDerivation {

# Skip default configure phase since we do it in buildPhase
dontUseCmakeConfigure = true;

# The generator is a build-time CLI tool, not a runtime Qt app — it doesn't
# need QT_PLUGIN_PATH or other env vars injected by wrapQtApp. Skipping the
# wrap step avoids a segfault in wrapQtAppsNoGuiHook on some macOS versions
# where the Darwin binary wrapper tooling crashes (exit code 139).
dontWrapQtApps = true;

buildPhase = ''
runHook preBuild
Expand Down
Loading