nix: runCommandNoCC -> runCommand

Suppresses this.
evaluation warning: 'runCommandNoCC' has been renamed to/replaced by 'runCommand'
This commit is contained in:
2026-02-12 12:42:42 +08:00
parent 0ac725e393
commit 8182119968

View File

@@ -15,7 +15,7 @@
enableProjects ? [],
llvmTools ? ["llvm-config"],
extraConfig ? "",
runCommandNoCC,
runCommand,
wrapCCWith,
}: let
inherit (lib) optional optionals optionalString;
@@ -129,7 +129,7 @@ in rec {
dontFixup = true;
};
llvm-tools-irrt =
runCommandNoCC "llvm-tools-irrt" {}
runCommand "llvm-tools-irrt" {}
''
mkdir -p $out/bin
ln -s ${llvm}/bin/clang${exe_suffix} $out/bin/clang-irrt${exe_suffix}