aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Helgesson2022-08-04 21:43:35 +0200
committerRobert Helgesson2022-08-04 21:43:35 +0200
commit6564bee9ee7390f1d4612b1ff654ac82a8b14d17 (patch)
tree03132a54e698d5729b09ecb00fce2be917355b7e
parent184349d8149436748986d1bdba087e4149e9c160 (diff)
Replace runCommandNoCC by runCommand
The `runCommand` function has been using `stdenvNoCC` for quite a while and `runCommandNoCC` is correspondingly deprecated. See https://github.com/NixOS/nixpkgs/commit/9feb144c8cc4f4b71a9c23b2f7fd6b2ea55649e5
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 7a75d7c..bfb0b77 100644
--- a/flake.nix
+++ b/flake.nix
@@ -101,7 +101,7 @@
};
deployChecks = deploy: builtins.mapAttrs (_: check: check deploy) {
- schema = deploy: final.runCommandNoCC "jsonschema-deploy-system" { } ''
+ schema = deploy: final.runCommand "jsonschema-deploy-system" { } ''
${final.python3.pkgs.jsonschema}/bin/jsonschema -i ${final.writeText "deploy.json" (builtins.toJSON deploy)} ${./interface.json} && touch $out
'';
@@ -109,7 +109,7 @@
let
profiles = builtins.concatLists (final.lib.mapAttrsToList (nodeName: node: final.lib.mapAttrsToList (profileName: profile: [ (toString profile.path) nodeName profileName ]) node.profiles) deploy.nodes);
in
- final.runCommandNoCC "deploy-rs-check-activate" { } ''
+ final.runCommand "deploy-rs-check-activate" { } ''
for x in ${builtins.concatStringsSep " " (map (p: builtins.concatStringsSep ":" p) profiles)}; do
profile_path=$(echo $x | cut -f1 -d:)
node_name=$(echo $x | cut -f2 -d:)