writers: use runCommand instead of runCommandNoCC

runCommandNoCC is now an alias for runCommand, which was causing ofborg
failures with allowAliases = false.
This commit is contained in:
Ben Wolsieffer
2023-07-28 00:39:21 -04:00
parent 09dd973987
commit 025af47303
+2 -2
View File
@@ -1,4 +1,4 @@
{ lib, runCommandNoCC, dasel }:
{ lib, runCommand, dasel }:
let
daselBin = lib.getExe dasel;
@@ -28,7 +28,7 @@ rec {
let
name = last (builtins.split "/" nameOrPath);
in
runCommandNoCC name
runCommand name
{
input = input data;
passAsFile = [ "input" ];