File tree Expand file tree Collapse file tree 4 files changed +8
-0
lines changed
Expand file tree Collapse file tree 4 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ flathub = "https://dl.flathub.org/repo"
2727crates_io = " https://static.crates.io"
2828dart_pub = " https://mirrors.tuna.tsinghua.edu.cn/dart-pub"
2929guix = " https://ci.guix.gnu.org"
30+ guix_bordeaux = " https://bordeaux.guix.gnu.org"
3031pytorch_wheels = " https://download.pytorch.org/whl"
3132sjtug_internal = " https://github.com/sjtug"
3233flutter_infra = " https://storage.flutter-io.cn/flutter_infra"
Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ pub struct Endpoints {
185185 pub crates_io : String ,
186186 pub dart_pub : String ,
187187 pub guix : String ,
188+ pub guix_bordeaux : String ,
188189 pub pytorch_wheels : String ,
189190 pub linuxbrew_bottles : String ,
190191 pub sjtug_internal : String ,
@@ -393,6 +394,7 @@ mod tests {
393394 crates_io : "https://static.crates.io" . into ( ) ,
394395 dart_pub : "https://mirrors.tuna.tsinghua.edu.cn/dart-pub" . into ( ) ,
395396 guix : "https://ci.guix.gnu.org" . into ( ) ,
397+ guix_bordeaux : "https://bordeaux.guix.gnu.org" . into ( ) ,
396398 pytorch_wheels : "https://download.pytorch.org/whl" . into ( ) ,
397399 linuxbrew_bottles : "https://linuxbrew.bintray.com" . into ( ) ,
398400 sjtug_internal : "https://github.com/sjtug" . into ( ) ,
Original file line number Diff line number Diff line change @@ -293,6 +293,10 @@ pub fn configure_repo_routes(config: &mut web::ServiceConfig) {
293293 . route ( "/dart-pub/{path:.+}" , web:: get ( ) . to ( dart_pub) )
294294 . route ( "/pypi/web/simple/{path:.+}" , web:: get ( ) . to ( pypi) )
295295 . route ( "/guix/{path:.+}" , nix_intel ( |c| & c. guix , "guix" ) )
296+ . route (
297+ "/guix-bordeaux/{path:.+}" ,
298+ nix_intel ( |c| & c. guix_bordeaux , "guix-bordeaux" ) ,
299+ )
296300 . route (
297301 "/nix-channels/store/{path:.+}" ,
298302 nix_intel ( |c| & c. nix_channels_store , "nix-channels/store" ) ,
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ flathub = "https://dl.flathub.org/repo"
2626crates_io = " https://static.crates.io"
2727dart_pub = " https://mirrors.tuna.tsinghua.edu.cn/dart-pub"
2828guix = " https://ci.guix.gnu.org"
29+ guix_bordeaux = " https://bordeaux.guix.gnu.org"
2930pytorch_wheels = " https://download.pytorch.org/whl"
3031sjtug_internal = " https://github.com/sjtug"
3132flutter_infra = " https://storage.flutter-io.cn/flutter_infra"
You can’t perform that action at this time.
0 commit comments