[Haskell-cafe] Re: Control.Monad.Cont fun

2005-07-10 Thread Tomasz Zielonka
On Sat, Jul 09, 2005 at 07:05:20PM +0200, Thomas Jäger wrote: > Hello Tomasz, Hello Thomas, > Haskell doesn't support infinite types, but we can get close enough by > creating a type C m b such that C m b and C m b -> m b become > isomorphic: > > newtype C m b = C { runC :: C m b -> m b } Thank

[Haskell-cafe] cabal --user question

2005-07-10 Thread Frederik Eaton
Hi, How do I install a package in the user package.conf with cabal? It is not clear to me how to do this, looking at the output of 'configure --help'. There is an option "--user" to get dependencies from the user cabal file but this still, somewhat counterintuitively, tries to install the package

Re: [Haskell-cafe] cabal --user question

2005-07-10 Thread Isaac Jones
Frederik Eaton <[EMAIL PROTECTED]> writes: > Hi, > > How do I install a package in the user package.conf with cabal? It is > not clear to me how to do this, looking at the output of 'configure > --help'. There is an option "--user" to get dependencies from the user > cabal file but this still, som

Re: [Haskell-cafe] cabal --user question

2005-07-10 Thread Frederik Eaton
Thanks for the quick reply! > > How do I install a package in the user package.conf with cabal? It is > > not clear to me how to do this, looking at the output of 'configure > > --help'. There is an option "--user" to get dependencies from the user > > cabal file but this still, somewhat counterin

Re: [Haskell-cafe] cabal --user question

2005-07-10 Thread Frederik Eaton
I forgot to say, when I run configure like runghc Setup.hs configure --with-hc-pkg="ghc-pkg --user" --prefix=$HOME and then run 'install', it exits with code 127 but displays no error message. Maybe something to look into... Frederik On Sun, Jul 10, 2005 at 05:00:13PM -0700, Frederik Eaton wrot