Hello everyone,
I’ve searched the forum and GitHub issues before opening this post, but I couldn’t find anything relevant. For the past couple of days, I haven’t been able to do anything Nix-related. I’m using macOS with nix-darwin, and even though I have all my configurations in a Git repository, my main reason for using Nix is to work with devenv.sh
. However, since a couple of days ago, my development environments have stopped working due to an issue with bmake
.
The reason I’m asking here is that I’m not very familiar with Nix, but it seems to me that the main bmake
package is broken because crufty.net
is down. I’ve tried disabling AdGuard, changing DNS settings, and using multiple sites to check whether the domain is down only for me or for everyone. It appears to be down for everyone.
If I try nix-shell -p bmake
I get this error
error: builder for '/nix/store/n5msnqk8scggs34355z112zaaw75irdk-bmake-20241124.tar.gz.drv' failed with exit code 1;
last 19 log lines:
>
> trying https://www.crufty.net/ftp/pub/sjg/bmake-20241124.tar.gz
> % Total % Received % Xferd Average Speed Time Time Time Current
> Dload Upload Total Spent Left Speed
> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
> curl: (7) Failed to connect to www.crufty.net port 443 after 795 ms: Couldn't connect to server
> Warning: Problem (retrying all errors). Will retry in 1 seconds. 3 retries
> Warning: left.
> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
> curl: (7) Failed to connect to www.crufty.net port 443 after 215 ms: Couldn't connect to server
> Warning: Problem (retrying all errors). Will retry in 2 seconds. 2 retries
> Warning: left.
> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
> curl: (7) Failed to connect to www.crufty.net port 443 after 222 ms: Couldn't connect to server
> Warning: Problem (retrying all errors). Will retry in 4 seconds. 1 retries
> Warning: left.
> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
> curl: (7) Failed to connect to www.crufty.net port 443 after 221 ms: Couldn't connect to server
> error: cannot download bmake-20241124.tar.gz from any mirror
For full logs, run 'nix log /nix/store/n5msnqk8scggs34355z112zaaw75irdk-bmake-20241124.tar.gz.drv'.
(this is the full log)
I’ve also tried to create a local overlay in order to point to "https://ftp.netbsd.org/pub/NetBSD/misc/sjg/bmake-${finalAttrs.version}.tar.gz";
but it doesn’t seems to work, the darwin-rebuild ...
fails always for bmake
(but for a different version 20240808
instead of 20241124
the reason is the same though)
It seems strange that I couldn’t find anything yet, does someone have the same problem?