From fa0fe99e72b29776950bcaec71c0ac69ff0bad67 Mon Sep 17 00:00:00 2001 From: Bart Oostveen Date: Thu, 30 Oct 2025 02:32:48 +0100 Subject: [PATCH] fix: rename runCommandNoCC to runCommand --- buildGradleApplication/mkM2Repository.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buildGradleApplication/mkM2Repository.nix b/buildGradleApplication/mkM2Repository.nix index 17b2b29..21220ca 100644 --- a/buildGradleApplication/mkM2Repository.nix +++ b/buildGradleApplication/mkM2Repository.nix @@ -1,6 +1,6 @@ { lib, - runCommandNoCC, + runCommand, python3, fetchArtifact, }: { @@ -19,7 +19,7 @@ depSpecs = builtins.filter dependencyFilter ( # Read all build and runtime dependencies from the verification-metadata XML builtins.fromJSON (builtins.readFile ( - runCommandNoCC "depSpecs" {buildInputs = [python3];} + runCommand "depSpecs" {buildInputs = [python3];} "python ${./parse.py} ${filteredSrc}/${verificationFile} ${builtins.toString (builtins.map lib.escapeShellArg repositories)}> $out" )) ); @@ -33,7 +33,7 @@ # write a dedicated script for the m2 repository creation. Otherwise, the m2Repository derivation might crash with 'Argument list too long' m2Repository = - runCommandNoCC "${pname}-${version}-m2-repository" + runCommand "${pname}-${version}-m2-repository" {src = filteredSrc;} ( "mkdir $out"