Skip to content

Commit 1c9ab50

Browse files
authored
Merge pull request #274 from mightyiam/runCommand
runCommandNoCC -> runCommand
2 parents 8907b2f + 9631cc5 commit 1c9ab50

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/modules/flake/system.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ in
104104
};
105105
config = {
106106
checks.nix-unit = (if config.nix-unit.allowNetwork then toNetworkedCheck else x: x) (
107-
pkgs.runCommandNoCC "nix-unit-check"
107+
pkgs.runCommand "nix-unit-check"
108108
{
109109
nativeBuildInputs = [ config.nix-unit.package ];
110110
# For toNetworkedCheck to override

templates/flake-module.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
cache = "file://${
2222
pkgs.mkBinaryCache {
2323
rootPaths = [
24-
(pkgs.runCommandNoCC "dummy" {
24+
(pkgs.runCommand "dummy" {
2525
nativeBuildInputs = [ config.packages.nix-unit ];
2626
} "").inputDerivation
2727
];
2828
}
2929
}";
3030

3131
template-flake-parts =
32-
pkgs.runCommandNoCC "template-flake-parts"
32+
pkgs.runCommand "template-flake-parts"
3333
{
3434
nativeBuildInputs = [ pkgs.nix ];
3535

0 commit comments

Comments
 (0)