Hi everyone, I am working on package whose build step is basically "run this script in an environment with packages x, y, ...". In Guix terms:
guix shell -C package1 package2 – ./script/build With gnu-build-system, I have to remove most steps, and I get lots of unnecessary build dependencies. But with the trivial-build-system, I even have to set up the environment variables (in particular PATH) myself. There doesn't seem to be anything in between if the list of build system in the manual is complete. But are there perhaps utilities that make it easier to run a script inside the trivial-build-system? Something that does the job of "guix shell"? Cheers, Konrad.