I'm very new to haskell and yesod. I'm doing the yesod tutorial, and when I try to compile the project, I get this:
$ cabal install
Resolving dependencies...
cabal: Could not resolve dependencies:
trying: yosog-0.0.0 (user goal)
next goal: http-conduit (dependency of yosog-0.0.0)
rejecting: http-conduit-1.6.1.2/installed-b3d... (conflict: warp =>
blaze-builder-conduit==0.4.0.2/installed-1db..., http-conduit =>
blaze-builder-conduit==0.5.0.1/installed-5a5...)
trying: http-conduit-1.4.1.6/installed-287...
next goal: tls-extra (dependency of http-conduit-1.4.1.6/installed-287...)
rejecting: tls-extra-0.4.7/installed-f20... (conflict: http-conduit =>
tls-extra==0.4.6/installed-153...)
trying: tls-extra-0.4.6/installed-153...
next goal: cryptocipher (dependency of tls-extra-0.4.6/installed-153...)
rejecting: cryptocipher-0.3.5/installed-306... (conflict: tls-extra =>
cryptocipher==0.3.5/installed-e42...)
trying: cryptocipher-0.3.5/installed-e42...
next goal: crypto-pubkey-types (dependency of
cryptocipher-0.3.5/installed-e42...)
rejecting: crypto-pubkey-types-0.1.1/installed-57f... (conflict: tls-extra =>
crypto-api==0.10.2/installed-974..., crypto-pubkey-types =>
crypto-api==0.10.2/installed-424...)
rejecting: crypto-pubkey-types-0.1.1, 0.1.0 (conflict: cryptocipher =>
crypto-pubkey-types==0.1.1/installed-57f...)
What could be wrong? It looks like all the dependencies are installed, but the versions are wrong? Running on Ubuntu 12.10
cabalfile? – Michael Snoyman Oct 31 '12 at 6:44tls-extraandcrypto-pubkey-typesdepend on different installs of the same version ofcrypto-api. Tryghc-pkg checkto look for broken packages. – Daniel Fischer Oct 31 '12 at 13:43yesod-platform. It's designed just to resolve these kind of issues. – Tarrasch Oct 31 '12 at 17:27