-
Hey, I have a big workspace project with multiple submodules.
A narrowed down example of my setup:
Any ideas how to fix this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ok turns out it was nix being silly all together, I hate how it handles submodules. nix develop "git+file://$(pwd)?submodules=1" This command allows me to enter my developer shell and also by including |
Beta Was this translation helpful? Give feedback.
Ok turns out it was nix being silly all together, I hate how it handles submodules.
nix develop "git+file://$(pwd)?submodules=1"
This command allows me to enter my developer shell and also by including
SUBMODULES=true
variable beforenix build
I get the results I wanted.