Sender | Message | Time |
---|---|---|
28 Aug 2021 | ||
02:32:39 | ||
02:35:47 | ||
12:19:23 | ||
30 Aug 2021 | ||
nrdxp: https://blog.superbaloo.net/posts/emmett-vdso/ got some more details here | 02:06:26 | |
while building some rpi disk images, i discovered ext4 images generated by using
but when applying that to nixpkgs:
the build fails with:
| 14:37:56 | |
the alternative could be to use tune2fs -O '^metadata_csum_seed' to disable it afterwards | 16:45:06 | |
1 Sep 2021 | ||
18:09:40 | ||
20:10:22 | ||
3 Sep 2021 | ||
05:54:31 | ||
5 Sep 2021 | ||
Did we ever figure out the "unchecked paths" issue at r13y? I'm seeing the same issues with my own build. | 17:56:10 | |
I tried building one of the derivations, but the mirror seems down: nix-build --check /nix/store/c99ihlhb2lh875spzsl6rnc4058grxvn-autoconf-2.71.tar.xz.drv checking outputs of '/nix/store/c99ihlhb2lh875spzsl6rnc4058grxvn-autoconf-2.71.tar.xz.drv'... warning: error: unable to download 'https://ftpmirror.gnu.org/autoconf/autoconf-2.71.tar.xz': Couldn't resolve host name (6); retrying in 266 ms warning: error: unable to download 'https://ftpmirror.gnu.org/autoconf/autoconf-2.71.tar.xz': Couldn't resolve host name (6); retrying in 553 ms warning: error: unable to download 'https://ftpmirror.gnu.org/autoconf/autoconf-2.71.tar.xz': Couldn't resolve host name (6); retrying in 1344 ms warning: error: unable to download 'https://ftpmirror.gnu.org/autoconf/autoconf-2.71.tar.xz': Couldn't resolve host name (6); retrying in 2563 ms | 19:02:30 | |
Seems to be the case for multiple of them (maybe all of them even) | 19:02:52 | |
I don't know why though, via the browser they work... | 19:05:45 | |
Yeah, only seems to happen with the <nix/fetchurl.nix> (what's used by stdenv.fetchurlBoot ): nix-instantiate -E 'with import ./. {}; autoconf.override { fetchurl = stdenv.fetchurlBoot; }' | 19:29:27 | |
It uses the internal builtin:fetchurl builder to fetch. Maybe something about the sandbox setup is wrong so it doesn't have internet | 19:30:42 | |
(more direct repro: nix-build -E 'import <nix/fetchurl.nix> { url = "http://example.com"; sha256 = ""; }' ) | 19:37:52 | |
that works here | 19:40:58 | |
so it's not just that :/ | 19:41:07 | |
Hmm, for me it does not: nix-build -E 'import <nix/fetchurl.nix> { url = "http://example.com"; sha256 = ""; }' warning: found empty hash, assuming 'sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=' this derivation will be built: /nix/store/r4rn52pvm83frvq2q4a2zb3vdq73l5x2-example.com.drv building '/nix/store/r4rn52pvm83frvq2q4a2zb3vdq73l5x2-example.com.drv'... warning: error: unable to download 'http://example.com': Couldn't resolve host name (6); retrying in 297 ms warning: error: unable to download 'http://example.com': Couldn't resolve host name (6); retrying in 502 ms warning: error: unable to download 'http://example.com': Couldn't resolve host name (6); retrying in 1083 ms warning: error: unable to download 'http://example.com': Couldn't resolve host name (6); retrying in 2086 ms error: unable to download 'http://example.com': Couldn't resolve host name (6) | 19:41:30 | |
any chance you could strace -Ff -s 1500 -p $(pidof nix-daemon) 2> log and upload that somewhere? | 19:41:49 | |
Is it Nix 2.4 regression? | 19:42:07 | |
https://github.com/NixOS/nix/issues/5089#issuecomment-913174916 | 19:42:20 | |
there is the bug in the nix's bugtracker | 19:42:36 | |
In reply to @baloo_:matrix.org(and re-trigger the bug in another terminal) | 19:43:15 | |
* <s>Is it Nix 2.4 regression?</s> No, also happens on 2.3 with or without daemon | 19:43:22 | |
https://gist.github.com/zhaofengli/e3c51186768971bb40495c83c383f2e0 | 19:46:09 | |
it ... should be invoking curl | 19:46:43 | |
and it does not | 19:46:45 | |
Doesn't it first try to resolve the hostname? | 19:47:30 | |
This is /run/systemd/resolve/stub-resolv.conf managed by man:systemd-resolved(8).\n# Do not edit.\n#\n# This file might be symlinked as /etc/resolv.conf. If you're looking at\n# /etc/resolv.conf and seeing this text, you have followed the symlink.\n#\n# This is a dynamic resolv.conf file for connecting local clients to the\n# internal DNS stub resolver of systemd-resolved. This file lists all\n# configured search domains.\n#\n# Run "resolvectl status" to see details about the uplink DNS servers\n# currently in use.\n#\n# Third party programs should typically not access this file directly, but only\n# through the symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a\n# different way, replace this symlink by a static file or a different symlink.\n#\n# See man:systemd-resolved.service(8) for details about the supported modes of\n# operation for /etc/resolv.conf.\n\nnameserver 127.0.0.53\noptions edns0 trust-ad\nsearch naive.network\n | 19:47:47 |