mirror-nixos-branch.pl: Prune special handling for NixOS 22.05

This commit is contained in:
hexa 2023-12-25 00:30:28 +01:00
parent f37d5e1545
commit e2c8b9f483
Signed by untrusted user: mweinelt
GPG key ID: 87C1E9888F856759

View file

@ -209,31 +209,7 @@ if ($bucketReleases && $bucketReleases->head_key("$releasePrefix")) {
} }
} }
if ($channelName =~ /^nixos-22.05/) { if ($channelName =~ /nixos/) {
my $arch = "x86_64-linux";
if ($channelName =~ /-aarch64/) {
$arch = "aarch64-linux";
}
downloadFile("nixos.channel", "nixexprs.tar.xz");
downloadFile("nixos.iso_minimal.$arch");
downloadFile("nixpkgs.tarball", "packages.json.br", "json-br");
# Only built on the main channel (x86_64-linux)
if ($arch eq "x86_64-linux") {
downloadFile("nixos.options", "options.json.br", "json-br");
}
# All of these paths are x86-specific only and are not in small channels
if ($arch eq "x86_64-linux" and $channelName !~ /-small/) {
downloadFile("nixos.iso_plasma5.$arch");
downloadFile("nixos.iso_gnome.$arch");
downloadFile("nixos.iso_minimal.i686-linux");
downloadFile("nixos.ova.$arch");
}
} elsif ($channelName =~ /nixos/) {
downloadFile("nixos.channel", "nixexprs.tar.xz"); downloadFile("nixos.channel", "nixexprs.tar.xz");
downloadFile("nixpkgs.tarball", "packages.json.br", "json-br"); downloadFile("nixpkgs.tarball", "packages.json.br", "json-br");
downloadFile("nixos.options", "options.json.br", "json-br"); downloadFile("nixos.options", "options.json.br", "json-br");