| 13 Oct 2025 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | pkgsMusl is musl -> musl | 13:57:51 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | nixosConfigurations.gnu-musl = nixosConfigurations.base.extendModules {
modules = [
./musl.nix
{
nixpkgs.buildPlatform = (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-gnu");
nixpkgs.hostPlatform = inputs.nixpkgs.lib.recursiveUpdate (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-musl") {};
}
];
};
nixosConfigurations.gnu-musl-llvm = nixosConfigurations.base.extendModules {
modules = [
./musl-llvm.nix
{
nixpkgs.buildPlatform = (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-gnu");
nixpkgs.hostPlatform = inputs.nixpkgs.lib.recursiveUpdate (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-musl") {
useLLVM = true;
linker = "lld";
config = "aarch64-unknown-linux-musl";
};
}
];
};
nixosConfigurations.musl = nixosConfigurations.base.extendModules {
modules = [
./musl.nix
{
nixpkgs.buildPlatform = (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-musl");
nixpkgs.hostPlatform = inputs.nixpkgs.lib.recursiveUpdate (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-musl") {};
}
];
};
nixosConfigurations.musl-llvm = nixosConfigurations.base.extendModules {
modules = [
./musl-llvm.nix
{
nixpkgs.buildPlatform = (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-musl");
nixpkgs.hostPlatform = inputs.nixpkgs.lib.recursiveUpdate (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-musl") {
useLLVM = true;
linker = "lld";
config = "aarch64-unknown-linux-musl";
};
}
];
};
| 13:58:08 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | * nixosConfigurations.gnu-musl = nixosConfigurations.base.extendModules {
modules = [
./musl.nix
{
nixpkgs.buildPlatform = (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-gnu");
nixpkgs.hostPlatform = inputs.nixpkgs.lib.recursiveUpdate (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-musl") {};
}
];
};
nixosConfigurations.gnu-musl-llvm = nixosConfigurations.base.extendModules {
modules = [
./musl-llvm.nix
{
nixpkgs.buildPlatform = (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-gnu");
nixpkgs.hostPlatform = inputs.nixpkgs.lib.recursiveUpdate (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-musl") {
useLLVM = true;
linker = "lld";
config = "aarch64-unknown-linux-musl";
};
}
];
};
nixosConfigurations.musl = nixosConfigurations.base.extendModules {
modules = [
./musl.nix
{
nixpkgs.buildPlatform = (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-musl");
nixpkgs.hostPlatform = inputs.nixpkgs.lib.recursiveUpdate (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-musl") {};
}
];
};
nixosConfigurations.musl-llvm = nixosConfigurations.base.extendModules {
modules = [
./musl-llvm.nix
{
nixpkgs.buildPlatform = (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-musl");
nixpkgs.hostPlatform = inputs.nixpkgs.lib.recursiveUpdate (inputs.nixpkgs.lib.systems.elaborate "aarch64-unknown-linux-musl") {
useLLVM = true;
linker = "lld";
config = "aarch64-unknown-linux-musl";
};
}
];
};
| 13:58:14 |
Ihar Hrachyshka | ah I see. I haven't looked at non-static musl, only pkgsStatic (which I believe is glibc->musl cross). anyway, I'm not of help. | 13:58:34 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | well musl-static is the thing that's failing | 13:59:13 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | so is that not related to pkgsStatic? | 13:59:19 |
Ihar Hrachyshka | pkgsStatic is musl static. (I'm confused.) | 13:59:36 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | The name of the derivation that is failing is musl-static-aarch64-unknown-linux-musl | 14:00:01 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | musl-static | 14:00:05 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | pkgsMusl.pkgsStatic.musl is the reproducer | 14:00:54 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | IDK why this ends up in the dependency graph | 14:01:33 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) |  Download image.png | 14:02:48 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | looks like somehow the gcc-wrapper needs it | 14:03:02 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | pkgsStatic.pkgsLLVM.musl builds just fine | 14:06:19 |
rosssmyth | While the APIs that are being used for ${program}.withPackages pattern is very nice and egronomic, it does have a downside of not using a spliced package. So for example recently I needed Python with a package in nativeBuildInputs, but then when cross-compiled it only has Python from pkgsHostTarget, leading to an invalid executable being used at build time and then either manually using pkgsBuildBuild.python or using the spliced Python and package separately.
I wonder if there is a good way to solve this? Meaning a way to use the spliced package, as for folks not in the know of splicing it is probably confusing to see a package operate differently based upon whether you use the helpers or not. But many of these helpers are implemented with finalAttrs.finalPackage, which isn't spliced.
| 18:00:49 |
Sandro | Can someone look at https://github.com/NixOS/nixpkgs/pull/447492 for the correct splice setup? | 22:31:54 |
hexa | also #windows:nixos.org maybe | 23:11:28 |
| 14 Oct 2025 |
Sandro | I did not know we had a room for that | 13:36:20 |
| UlyssesZhan joined the room. | 23:34:39 |
| 15 Oct 2025 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | I haven't had any reviews on my musl/llvm PRs yet | 17:15:14 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) |
- https://github.com/NixOS/nixpkgs/pull/451665
- https://github.com/NixOS/nixpkgs/pull/451147
- https://github.com/NixOS/nixpkgs/pull/447166
- https://github.com/NixOS/nixpkgs/pull/445833
| 17:15:37 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | Any takers? | 17:15:40 |
Stas | hey! I am cross-compiling armv7 systems, and wondered are there any caches with armv7 stuff in them? Or a cache that is willing to accept uploads from me on the armv7 base system? | 17:33:30 |
Stas | i am using mine for Olimex Lime to act as a restic backup server | 17:34:02 |
K900 | No official ones | 17:42:23 |
K900 | @misuzu had something | 17:42:27 |
K900 | But generally armv7 is not an interesting target | 17:42:33 |
Stas | yeah, it is drying off | 17:42:41 |
Stas | i am using it just cause that board has native SATA, and is very compact :D | 17:42:54 |
matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) | ElvishJerricco:
❯ /nix/store/d5xywf1k4cmmr2jlxmsc5qa6zcwn3myd-nixos-vm/bin/run-nixos-vm -nographic
[ 0.582586] (udev-worker)[90]: mtd0ro: Failed to find and pin callout binary "/nix/store/p9vl1dd3qjafk36wsb49q79a2rhjrpbi-systemd-258/lib/udev/mtd_probe": No such file or directory
[ 0.880121] (udev-worker)[94]: hidraw0: Failed to find and pin callout binary "/nix/store/p9vl1dd3qjafk36wsb49q79a2rhjrpbi-systemd-258/lib/udev/fido_id": No such file or directory
[ 0.886137] (udev-worker)[97]: hidraw1: Failed to find and pin callout binary "/nix/store/p9vl1dd3qjafk36wsb49q79a2rhjrpbi-systemd-258/lib/udev/fido_id": No such file or directory
[ 3.416831] systemd[1]: Failed to preset unit: Unit autovt@.service does not exist
| 21:17:33 |