From b63a55ac4ac933a77678498fdc747735a1a0dec0 Mon Sep 17 00:00:00 2001 From: Ross Smyth <18294397+RossSmyth@users.noreply.github.com> Date: Mon, 9 Feb 2026 15:21:13 -0500 Subject: [PATCH] applyPatches: remove explicit phases --- pkgs/build-support/trivial-builders/default.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/build-support/trivial-builders/default.nix b/pkgs/build-support/trivial-builders/default.nix index 6dd64f215273..d43d30b7ec25 100644 --- a/pkgs/build-support/trivial-builders/default.nix +++ b/pkgs/build-support/trivial-builders/default.nix @@ -1063,7 +1063,15 @@ rec { ; preferLocalBuild = true; allowSubstitutes = false; - phases = "unpackPhase patchPhase installPhase"; + + # unconditionally disable phases that are we don't want + dontConfigure = true; + dontBuild = true; + doCheck = false; + doInstallCheck = false; + dontFixup = true; + doDist = false; + installPhase = "cp -R ./ $out"; } # Carry (and merge) information from the underlying `src` if present.