
Not sure what the correct list is for this observation. I was trying to install gitit, and here is what happened. michael@michael:~/haskell/blog-example$ cabal install gitit Resolving dependencies... cabal: dependencies conflict: happstack-server-0.5.1 requires time ==1.1.4 however time-1.1.4 was excluded because happstack-server-0.5.1 requires time ==1.2.0.3 huh? Cabal seems to think happstack-server-0.5.1 has two conflicting requirements. How do I suss this out?

Michael Litchard
Not sure what the correct list is for this observation. I was trying to install gitit, and here is what happened.
michael@michael:~/haskell/blog-example$ cabal install gitit Resolving dependencies... cabal: dependencies conflict: happstack-server-0.5.1 requires time ==1.1.4 however time-1.1.4 was excluded because happstack-server-0.5.1 requires time ==1.2.0.3
huh? Cabal seems to think happstack-server-0.5.1 has two conflicting requirements. How do I suss this out?
cabal install gitit --dry-run --verbose=3 I'm guessing that the problems is that you have two different dependencies of happstack-server installed with two different versions of time (or else two installs of happstack-server...). -- Ivan Lazar Miljenovic Ivan.Miljenovic@gmail.com IvanMiljenovic.wordpress.com

On 7/16/10 9:36 PM, Ivan Lazar Miljenovic wrote:
Michael Litchard
writes: cabal: dependencies conflict: happstack-server-0.5.1 requires time ==1.1.4 however time-1.1.4 was excluded because happstack-server-0.5.1 requires time ==1.2.0.3
I did battle with this one today. Does adding --constraint 'convertible-text >= 0.3.0.1' help ?
participants (3)
-
Ivan Lazar Miljenovic
-
Michael Litchard
-
Simon Michael