Hi all,
I was wondering if Cabal has a predicate which allows me to only enable options when running GHCi. The use-case is I have a set of `ghc-options` that I do *not* want enabled when I run `cabal repl` or `stack repl`. Ideally I'm looking for something along the lines of:

if !repl
  ghc-options: ...

-deech