Hello, On June 30, 2025 10:47:29 PM GMT+08:00, Konrad Hinsen <konrad.hin...@fastmail.net> wrote: >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
There is copy-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"? No,but you can always import gnu build system and use the wrap phase. > >Cheers, > Konrad. Rutherther