Skip to content

Commit 38f3faf

Browse files
mpscholtenclaude
andcommitted
Replace deprecated runCommandNoCC with runCommand
runCommandNoCC has been renamed to runCommand in recent nixpkgs. The behavior is identical - both use stdenvNoCC by default. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 789f771 commit 38f3faf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NixSupport/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ CABAL_EOF
291291
paths = [ runServer allScripts ] ++ pkgs.lib.optional hasJobs runJobs;
292292
};
293293
in
294-
pkgs.runCommandNoCC appName { inherit static binaries; nativeBuildInputs = [ pkgs.makeWrapper ]; } ''
294+
pkgs.runCommand appName { inherit static binaries; nativeBuildInputs = [ pkgs.makeWrapper ]; } ''
295295
# Hash that changes only when `static` changes:
296296
INPUT_HASH="$(basename ${static} | cut -d- -f1)"
297297
makeWrapper ${binaries}/bin/RunProdServer $out/bin/RunProdServer \

0 commit comments

Comments
 (0)