Hello, newbie here, trying to write a nixpkgs package for RedisInsight. It is a pretty basic nodejs electron project built with yarn, here is the repo.
I forked the nixpkgs repository, cloned it locally and made the following changes. To test, I have been running this command: NIXPKGS_ALLOW_UNFREE=1 nix-build -A redis-insight
The build starts, and it tries to run the buildPhase script, but complains about missing packages. I am using the mkYarnPackage
utility, and I suspect the issue is that this project has three yarn.lock files (one , two and three).
How can I ensure that I fetch all the dependencies from all the lockfiles?
Thanks!