Justin Veilleux schreef op do 15-07-2021 om 14:06 [-0400]: > + (inputs > + `(("bash" ,bash) > + ("coreutils" ,coreutils) Would "coreutils-minimal" and "bash-minimal" suffice? Or, more minimalistic, (parameterize ((%current-target-system #f)) `(("bash" ,(canonical-package "bash") ("coreutils" ,(canonical-package "bash")))) Or, more simply, let the inputs be (standard-packages). > + ("node" ,node) > + ("zip" ,zip) > + ("unzip" ,unzip))) These should probably be 'native-inputs' and not 'inputs' for cross-compilation reasons. Try "./pre-inst-env guix build tosdr-chromium --target=aarch64-linux-gnu" without transparant QEMU emulation, I think it will fail if these inputs are in 'inputs' and not 'native-inputs'. Greetings, Maxime.