<giaco>
sphalerite: with proot, yes. I think that compiling is another way to go
<sphalerite>
no way to just get it in /nix for real? :/
<giaco>
sphalerite: if you root your phone you can make the /nix folder, otherwise you can use proot, otherwise you can recompile nix and change the prefix of the store and the state
<sphalerite>
ah right, my phone is rooted
<sphalerite>
excellent
<giaco>
sphalerite: everything is easies with root, the real challenge is to make it work in userspace
<sphalerite>
root is userspace :p
<giaco>
kind of
<sphalerite>
userspace = not kernel space
<sphalerite>
anyway, a solution that requires root is sufficient for me — I just want to be able to run builds on my old phone, which has a broken screen
duncan^ has quit [Ping timeout: 255 seconds]
duncan^ has joined #nixos-aarch64
Sonarpulse has quit [Ping timeout: 250 seconds]
duncan^ has quit [Ping timeout: 250 seconds]
Sonarpulse has joined #nixos-aarch64
duncan^ has joined #nixos-aarch64
duncan^ has quit [Ping timeout: 255 seconds]
angerman has quit [Excess Flood]
angerman has joined #nixos-aarch64
cornu has joined #nixos-aarch64
cornu has quit [Ping timeout: 240 seconds]
sphalerit has quit [Ping timeout: 240 seconds]
bkchr[m] has quit [Ping timeout: 240 seconds]
codyopel has quit [Ping timeout: 240 seconds]
dtz has quit [Ping timeout: 269 seconds]
grahamc has quit [Ping timeout: 256 seconds]
thefloweringash[ has quit [Ping timeout: 256 seconds]
<giaco>
I am building nix on two different machines. The configure script is absolutely identical (check with "diff") but on first machine runs ok, on the second returns syntax error at 80%. Both machines are running GNU bash, version 4.4.19
<makefu>
giaco: sounds like a variable is not set, maybe a dependency is missing? you could simply open the configure script with vim and check out the line 6983
<giaco>
makefu: problem is that line 6983 is wrong line
<giaco>
makefu: 6983 is "declare -a aws_version_tokens=($(printf '#include <aws/core/VersionConfig.h>\nAWS_SDK_VERSIO...", but by watching config.log it seems that the error is later on
<giaco>
last output line was checking for aws/s3/S3Client.h... no
<makefu>
giaco: you could run 'sh -x ./configure' for a getting the last executed line
<giaco>
makefu: you're right, thanks. Running. let's see what happens