1

最新バージョンのHeistをインストールしようとしてerrors-1.3.1いますが、依存関係がインストールに失敗します。これを乗り越える方法について何か提案はありますか?

$ cabal install errors-1.3.1
Resolving dependencies...
Configuring errors-1.3.1...
Building errors-1.3.1...
Preprocessing library errors-1.3.1...
[1 of 5] Compiling Data.EitherR     ( Data/EitherR.hs, dist/build/Data/EitherR.o )
[2 of 5] Compiling Control.Error.Util ( Control/Error/Util.hs, dist/build/Control/Error/Util.o )

Control/Error/Util.hs:74:10:
    Could not deduce (Monad m) arising from a use of `fmap'
    from the context (Functor m)
      bound by the type signature for
                 fmapRT :: Functor m => (a -> b) -> EitherT l m a -> EitherT l m b
      at Control/Error/Util.hs:74:1-13
    Possible fix:
      add (Monad m) to the context of
        the type signature for
          fmapRT :: Functor m => (a -> b) -> EitherT l m a -> EitherT l m b
    In the expression: fmap
    In an equation for `fmapRT': fmapRT = fmap
cabal: Error: some packages failed to install:
errors-1.3.1 failed during the building phase. The exception was:
ExitFailure 1
4

1 に答える 1

2

これを最新のエラーである1.4.1で修正しました(1.4.0には、EitherTタイプとMaybeTタイプをエクスポートしないという間違いがあります)。今回はどちらかの依存関係に上限を追加して、将来発生しないようにしました。

于 2013-02-10T00:40:43.960 に答える