Skip to content

Commit 4585c10

Browse files
authored
Merge pull request #2221 from digitallyinduced/fix-runcommand-deprecation
Replace deprecated runCommandNoCC with runCommand
2 parents 789f771 + 38f3faf commit 4585c10

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)