I'm trying to install http-conduit-1.9.6 (my Haskell application needs that version), and my "cabal install http-conduit-1.9.6" gives me the following error:
Building http-conduit-1.9.6...
Preprocessing library http-conduit-1.9.6...
[ 1 of 12] Compiling Network.HTTP.Conduit.Util ( Network/HTTP/Conduit/Util.hs, dist/build/Network/HTTP/Conduit/Util.o )
[ 2 of 12] Compiling Network.HTTP.Conduit.ConnInfo ( Network/HTTP/Conduit/ConnInfo.hs, dist/build/Network/HTTP/Conduit/ConnInfo.o )
[ 3 of 12] Compiling Network.HTTP.Conduit.Types ( Network/HTTP/Conduit/Types.hs, dist/build/Network/HTTP/Conduit/Types.o )
Network/HTTP/Conduit/Types.hs:239:13:
No instance for (Read UTCTime)
arising from the 'deriving' clause of a data type declaration
Possible fix:
add an instance declaration for (Read UTCTime)
or use a standalone 'deriving instance' declaration,
so you can specify the instance context yourself
When deriving the instance for (Read Cookie)
Failed to install http-conduit-1.9.6
cabal: Error: some packages failed to install:
http-conduit-1.9.6 failed during the building phase. The exception was:
ExitFailure 1
My work platform is Ubuntu 14.04 and cabal 1.20 Thanks.
http-conduit-1.9.6
, but I get the same error message when I runcabal repl
. I'm using HP 2014.2.0.0 - ghc 7.8.3 - cabal 1.20.0.3 – ErikRimport Data.Time.Format.Parse
. – arrowd