On Nov 29, 2007 7:45 AM, Duncan Coutts <
duncan.coutts@worc.ox.ac.uk
> wrote:
On Thu, 2007-11-29 at 00:21 -0600, Galchin Vasili wrote:
> The message I actually receive is:
>
> runhaskell Setup.lhs build ....
> .....
>
> ./Haq.hs:6:7:
> Could not find module `System.Environment':
> it is a member of a package base, which is hidden
>
> BTW I haven't actually checked source in via darcs due to cygwin $PATH
> problems ...
Have you tried adding:
build-depends: base
you your .cabal file?
Cabal enforces that your code may only use packages that you have
explicitly stated your code depends on.
Duncan