Skip to content

Commit 411fff1

Browse files
authored
Merge pull request #32 from 25huizengek1/fix-evaluation-error
fix: rename runCommandNoCC to runCommand
2 parents 77065d7 + fa0fe99 commit 411fff1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

buildGradleApplication/mkM2Repository.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
lib,
3-
runCommandNoCC,
3+
runCommand,
44
python3,
55
fetchArtifact,
66
}: {
@@ -19,7 +19,7 @@
1919
depSpecs = builtins.filter dependencyFilter (
2020
# Read all build and runtime dependencies from the verification-metadata XML
2121
builtins.fromJSON (builtins.readFile (
22-
runCommandNoCC "depSpecs" {buildInputs = [python3];}
22+
runCommand "depSpecs" {buildInputs = [python3];}
2323
"python ${./parse.py} ${filteredSrc}/${verificationFile} ${builtins.toString (builtins.map lib.escapeShellArg repositories)}> $out"
2424
))
2525
);
@@ -33,7 +33,7 @@
3333

3434
# write a dedicated script for the m2 repository creation. Otherwise, the m2Repository derivation might crash with 'Argument list too long'
3535
m2Repository =
36-
runCommandNoCC "${pname}-${version}-m2-repository"
36+
runCommand "${pname}-${version}-m2-repository"
3737
{src = filteredSrc;}
3838
(
3939
"mkdir $out"

0 commit comments

Comments
 (0)