| 18 Oct 2025 |
dramforever | okay this is really funny | 16:21:23 |
matthewcroughan | dramforever: hahahaha | 22:50:01 |
matthewcroughan | security.enableWrappers = false; makse you unable to login 🙈 | 22:50:10 |
matthewcroughan | but is also completely necessary for native musl/llvm compilation | 22:50:30 |
matthewcroughan | * but is also completely necessary for native musl/llvm compilation (due to pkgsStatic being broken) | 22:58:38 |
matthewcroughan | * but is also completely necessary for native musl/llvm compilation (due to pkgsStatic being broken on it) | 22:58:45 |
| 19 Oct 2025 |
dramforever | who needs to log in anywa | 08:10:51 |
dramforever | * who needs to log in anyway | 08:10:53 |
Grimmauld (any/all) | You wanna try https://github.com/thkukuk/pwaccess maybe, that would make pam/shadow work without suid | 08:45:42 |
Grimmauld (any/all) | it was on my list of things to try, but if you do get it working then definitely send me a snippet! | 08:46:47 |
Grimmauld (any/all) | actually i may try cooking something up today for a suid-less login... We'll see how successful i am | 08:57:14 |
matthewcroughan | Should be able to make a VM test for it right? | 10:09:27 |
Grimmauld (any/all) | yep | 10:09:39 |
matthewcroughan | Sadly musl vm test isn't possible atm because some things break | 10:10:51 |
matthewcroughan | error: builder for '/nix/store/34dsfyf2hxmdkc4aahwvwrn22m45ki07-perl5.40.0-Alien-Build-2.80-aarch64-unknown-linux-musl.drv' failed to produce output path for output 'devdoc'
| 10:13:28 |
matthewcroughan | seems like a silly thing to fail on but yeah | 10:13:43 |
matthewcroughan | https://github.com/NixOS/nixpkgs/pull/452738 also | 10:15:12 |
matthewcroughan | Weirdly too, the VM tests somehow build install-grub.sh | 10:16:28 |
matthewcroughan |  Download image.png | 10:17:59 |
matthewcroughan | the deps in yellow failed to build | 10:18:03 |
matthewcroughan | error: Cannot build '/nix/store/p6prsakbjbpp0rbjzryxgzdm3cpxf1a7-vde2-aarch64-unknown-linux-musl-2.3.3.drv'.
Reason: builder failed with exit code 2.
Output paths:
/nix/store/lcb911qs6ffd7gg4xnnzd10i9hbvrybb-vde2-aarch64-unknown-linux-musl-2.3.3
Last 25 log lines:
> CC canonicalize.lo
> CC malloc.lo
> CC memcmp.lo
> CC realloc.lo
> In file included from realloc.c:3:
> realloc.c: In function 'rpl_realloc':
> ../../include/config.h:342:16: error: implicit declaration of function 'rpl_malloc'; did you mean 'rpl_realloc'? [-Wimplicit-function-declaration]
> 342 | #define malloc rpl_malloc
> | ^~~~~~~~~~
> realloc.c:17:24: note: in expansion of macro 'malloc'
> 17 | return malloc(size);
> | ^~~~~~
> ../../include/config.h:342:16: error: returning 'int' from a function with return type 'void *' makes pointer from integer without a cast [-Wint-conversion]
> 342 | #define malloc rpl_malloc
> realloc.c:17:24: note: in expansion of macro 'malloc'
> 17 | return malloc(size);
> | ^~~~~~
> realloc.c:19:20: error: assignment to 'void *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
> 19 | mem=malloc(size);
> | ^
> make[2]: *** [Makefile:395: realloc.lo] Error 1
> make[2]: Leaving directory '/build/source/src/common'
> make[1]: *** [Makefile:563: all-recursive] Error 1
> make[1]: Leaving directory '/build/source/src'
> make: *** [Makefile:393: all-recursive] Error 1
For full logs, run:
nix log /nix/store/p6prsakbjbpp0rbjzryxgzdm3cpxf1a7-vde2-aarch64-unknown-linux-musl-2.3.3.drv
| 10:18:12 |
matthewcroughan | vde2 fails like that | 10:18:15 |
matthewcroughan | Ah okay pytest actually only fails to produce devdoc a percentage of the time | 10:18:33 |
matthewcroughan | The real error is that it's producing a bad output path | 10:18:43 |
Alyssa Ross | ah that's a common one | 10:18:46 |
matthewcroughan | error: output '/nix/store/2ldd5ibxb8i538v6cch3j8zkyvkq5mq9-python3.13-pytest-8.4.2-aarch64-unknown-linux-musl' is not allowed to refer to the following paths:
┃ /nix/store/m0b67b3lmjcxa8aplpl75qpb26gr5vsf-python3-3.13.8
| 10:18:58 |
matthewcroughan | And that is because of this | 10:19:08 |
matthewcroughan | https://github.com/NixOS/nixpkgs/pull/451506 | 10:19:09 |
Alyssa Ross | "ac_cv_func_malloc_0_nonnull=yes"
"ac_cv_func_realloc_0_nonnull=yes"
| 10:19:28 |
Alyssa Ross | that's the solution any time you see an rpl_malloc error | 10:19:34 |