I have a Haskell library I wrote that I compile with stack.
I now need to use it in another Haskell stack project.
In order to do that, I have added its current version to the extra_deps
of my new project's stack.yaml
and listed it among the build_depends
of one its executables.
When I run stack build
, however, it obviously tries to download the library from the internet. How do I specify that the library is local and where to find it?
Thanks in advance!