MFlow icon indicating copy to clipboard operation
MFlow copied to clipboard

No instance for (Semigroup HttpData) with ghc 8.4.4

Open adrianmay opened this issue 7 years ago • 1 comments

This Dockerfile reproduces the problem (after several cups of tea):

FROM gregweber/ghc-haskell-dev USER root RUN apt-get update RUN apt-get install wget USER ghc RUN wget https://downloads.haskell.org/~ghc/8.4.4/ghc-8.4.4-src.tar.xz RUN tar xf ghc-8.4.4-src.tar.xz RUN cd ghc-8.4.4; ./configure; make RUN wget https://www.haskell.org/cabal/release/cabal-2.4.0.0/Cabal-2.4.0.0.tar.gz RUN tar xf Cabal-2.4.0.0.tar.gz RUN cd Cabal-2.4.0.0; ghc -threaded --make Setup; RUN cd Cabal-2.4.0.0; ./Setup configure; ./Setup build; USER root RUN cd Cabal-2.4.0.0; ./Setup install RUN apt-get install libz-dev USER ghc RUN cabal install lens RUN cabal install cpphs RUN cabal install diagrams RUN cabal install MFlow

adrianmay avatar Oct 24 '18 14:10 adrianmay

Thanks.

Please use ghc-8.2 or less until this is fixed.

agocorona avatar Oct 25 '18 09:10 agocorona