@@ -42,7 +42,7 @@ sub fetch {
4242my $flakeInfo = decode_json(` nix flake metadata --json "$flakeUrl "` or die ) if $flakeUrl ;
4343my $nixRev = ($flakeInfo ? $flakeInfo -> {revision } : $evalInfo -> {jobsetevalinputs }-> {nix }-> {revision }) or die ;
4444
45- my $buildInfo = decode_json(fetch(" $evalUrl /job/build.nix.x86_64-linux" , ' application/json' ));
45+ my $buildInfo = decode_json(fetch(" $evalUrl /job/build.nix-everything .x86_64-linux" , ' application/json' ));
4646# print Dumper($buildInfo);
4747
4848my $releaseName = $buildInfo -> {nixname };
@@ -91,7 +91,7 @@ sub getStorePath {
9191sub copyManual {
9292 my $manual ;
9393 eval {
94- $manual = getStorePath(" build.nix.x86_64-linux " , " doc " );
94+ $manual = getStorePath(" manual " );
9595 };
9696 if ($@ ) {
9797 warn " $@ " ;
@@ -240,12 +240,12 @@ sub downloadFile {
240240# Upload nix-fallback-paths.nix.
241241write_file(" $tmpDir /fallback-paths.nix" ,
242242 " {\n " .
243- " x86_64-linux = \" " . getStorePath(" build.nix.x86_64-linux" ) . " \" ;\n " .
244- " i686-linux = \" " . getStorePath(" build.nix.i686-linux" ) . " \" ;\n " .
245- " aarch64-linux = \" " . getStorePath(" build.nix.aarch64-linux" ) . " \" ;\n " .
246- " riscv64-linux = \" " . getStorePath(" buildCross.nix.riscv64-unknown-linux-gnu.x86_64-linux" ) . " \" ;\n " .
247- " x86_64-darwin = \" " . getStorePath(" build.nix.x86_64-darwin" ) . " \" ;\n " .
248- " aarch64-darwin = \" " . getStorePath(" build.nix.aarch64-darwin" ) . " \" ;\n " .
243+ " x86_64-linux = \" " . getStorePath(" build.nix-everything .x86_64-linux" ) . " \" ;\n " .
244+ " i686-linux = \" " . getStorePath(" build.nix-everything .i686-linux" ) . " \" ;\n " .
245+ " aarch64-linux = \" " . getStorePath(" build.nix-everything .aarch64-linux" ) . " \" ;\n " .
246+ " riscv64-linux = \" " . getStorePath(" buildCross.nix-everything .riscv64-unknown-linux-gnu.x86_64-linux" ) . " \" ;\n " .
247+ " x86_64-darwin = \" " . getStorePath(" build.nix-everything .x86_64-darwin" ) . " \" ;\n " .
248+ " aarch64-darwin = \" " . getStorePath(" build.nix-everything .aarch64-darwin" ) . " \" ;\n " .
249249 " }\n " );
250250
251251# Upload release files to S3.
0 commit comments