How to add a command like `unzip` to use on build proccess

I want to be able to use the unzip command as part of the build proccess
Solution:
add a nixpacks.toml file to your project with this in it
[phases.setup]
nixPkgs = ['...', 'unzip']
[phases.setup]
nixPkgs = ['...', 'unzip']
...
Jump to solution
2 Replies
Solution
Brody
Brody9mo ago
add a nixpacks.toml file to your project with this in it
[phases.setup]
nixPkgs = ['...', 'unzip']
[phases.setup]
nixPkgs = ['...', 'unzip']
DonKatze
DonKatze9mo ago
thanks!