4

Exactly that - can I run IHaskell and have it load packages from a particular sandbox directory?

Justin Wood
  • 9,941
  • 2
  • 33
  • 46
daj
  • 6,962
  • 9
  • 45
  • 79

1 Answers1

0

If you're using stack to manage your iHaskell instance, you can edit the stack.yaml file to include dependencies by listing them under the packages section. For example, say you want to include foo and bar that are located in folder foobar your stack.yaml would have:

packages:
  - foobar/foo
  - foobar/bar
katychuang
  • 1,018
  • 8
  • 18