From bdeaf976bdbcf2ddd62a7552ce9e7837a0761076 Mon Sep 17 00:00:00 2001 From: Sergei Zimmerman Date: Mon, 17 Nov 2025 20:58:27 +0300 Subject: [PATCH] packaging/dev-shell: Fix configurePhase Since 918c1a9e58a4f8c948e48c6bbe0f29339fc8963a configurePhase variable points to cmakeConfigurePhase and runPhase configurePhase does the wrong thing. configurePhase function on the other hand still worked correctly. --- packaging/dev-shell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packaging/dev-shell.nix b/packaging/dev-shell.nix index d50cab759..2174b4edb 100644 --- a/packaging/dev-shell.nix +++ b/packaging/dev-shell.nix @@ -269,6 +269,8 @@ pkgs.nixComponents2.nix-util.overrideAttrs ( CXX_LD = "mold"; }; + dontUseCmakeConfigure = true; + mesonFlags = map (transformFlag "libutil") (ignoreCrossFile pkgs.nixComponents2.nix-util.mesonFlags) ++ map (transformFlag "libstore") (ignoreCrossFile pkgs.nixComponents2.nix-store.mesonFlags)