| 8 Mar 2025 |
alexfmpe | I can see the standard header files in
/nix/store/vnpih2i860advbsw2g0dj6cx1j1dc256-aarch64-unknown-linux-android-ndk-toolchain-26.3.11579264/toolchain/sysroot/usr/include but going by strace -f when reproducing the error, only toolchain/lib/clang/17/include seems to be looked at | 02:55:23 |
alexfmpe | seems this was working around november | 02:56:14 |
alexfmpe | * I can see the standard header files in
/nix/store/vnpih2i860advbsw2g0dj6cx1j1dc256-aarch64-unknown-linux-android-ndk-toolchain-26.3.11579264/toolchain/sysroot/usr/include but going by strace -f when reproducing the error on a standalone invocation, only toolchain/lib/clang/17/include seems to be looked at | 03:02:27 |
| Qyriad changed their display name from qyriad to Qyriad. | 21:41:03 |
| 9 Mar 2025 |
| picostove joined the room. | 19:37:53 |
| 10 Mar 2025 |
| Charles left the room. | 22:29:16 |
Axman6 | I'm currently working on moving some projects at work to build using Nix, things are working find for macOS and linux, but we also need to produce artefacts for windows. Specifically, we're bundling a python application using pyinstaller, and the mere involvement of python seems to cause a lot of issues as a lot of what it takes to build a python package involves running code on the buildPlatform which is intended for the hostPlatform. Is there any hope in being able to achieve this?
I've managed to build C and C++ things for windows using pkgsCross.mingwW64 (though I'd also love to know if I should target one of the crt platforms instead), but python seems particularly problematic.
Maybe some kind of windows based franken-builder that's able to natively run windows binaries under WSL or something? | 23:41:32 |
| 11 Mar 2025 |
puffnfresh | Nix can execute Windows binaries within WSL | 00:18:56 |
puffnfresh | alternatively, Wine can execute within a Nix build, I've been doing that recently | 00:20:37 |
puffnfresh | and finally I'm working on native Nix on Windows, but we're many months away from actually building the first derivation | 00:21:49 |
Axman6 | @puffnfreshG'day g'day - yeah I need to look more into using wine for things. I have a good grasp how a linux VM operates but wine feels like a different beast | 00:44:38 |
puffnfresh | { stdenv
, wine64Packages
}:
stdenv.mkDerivation {
name = "wine-example";
nativeBuildInputs = [ wine64Packages.minimal ];
dontUnpack = true;
buildPhase = ''
WINEPREFIX=$PWD/.wine wine64 cmd.exe /c "echo %HOMEDRIVE% > Z:$out"
'';
}
| 02:38:39 |