Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just upgraded from GHC 7.2.2 to 7.4.1 on 32-bit linux. The install went fine, but cabal-install is not happy:

$ cabal update
Downloading the latest package list from hackage.haskell.org
$ cabal install repa
Resolving dependencies...
cabal: Couldn't read cabal file "bytestring/0.9.2.1/bytestring.cabal"

Here's the cabal version I'm running:

$ cabal --version
cabal-install version 0.10.2
using version 1.10.1.0 of the Cabal library

Thanks!

share|improve this question
1  
I think this is a problem with the current Hackage index - I'm getting the same problem after a cabal update on a previously working system. – a1kmm Feb 3 '12 at 5:07

2 Answers

run this after you run cabal update:

tar -f ~/.cabal/packages/hackage.haskell.org/00-index.tar --delete bytestring/0.9.2.0
tar -f ~/.cabal/packages/hackage.haskell.org/00-index.tar --delete bytestring/0.9.2.1
share|improve this answer
I did this and it's still not working. Does anyone knows what could be wrong? – Rafael S. Calsaverini Apr 14 at 17:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.