Nanopass installation failed

Hello everyone!

The following errors occurred when I tried to install nanopass. How should I install it correctly?

# raco pkg install nanopass
Resolving "nanopass" via https://download.racket-lang.org/releases/9.2/catalog/
Resolving "nanopass" via https://download.rhombus-lang.org/releases/current/catalog/
package-catalog-lookup: error from server
  URL: https://download.rhombus-lang.org/releases/current/catalog/pkg/nanopass?version=9.2
  status code: 400
  context...:
   /usr/racket/collects/pkg/private/network.rkt:67:6
# raco pkg install --catalog https://download.racket-lang.org/releases/9.2/catalog/ nanopass
Resolving "nanopass" via https://download.racket-lang.org/releases/9.2/catalog/
raco pkg install: cannot find package on catalogs
  package: nanopass

Thanks!

The catalog https://download.rhombus-lang.org/releases/current/catalog/ is an AWS S3-backed site via Cloudflare's CDN. Maybe there was a temporary glitch? It's working ok for me at the moment, but I may be getting different servers in my area.

If you're still seeing trouble, you could try the third catalog in the search sequence (instead of the first), which is the one with a "nanopass" entry:

 raco pkg install --catalog https://pkgs.racket-lang.org/ nanopass

But that catalog is the same S3+Cloudflare setup, so it might run into the same trouble.

This approach works for me. Thanks!