Reputation: 4132
I need the the following library for my development: gtksourceview2.
However, gtksourceview2 is broken:
what can I do to install it anyway? I can change the haskell files if I know how I can do that when running cabal install.
Upvotes: 1
Views: 45
Reputation: 13876
Distribution.Simple.Utils.moreRecentFile
function comes from Cabal
, it was added in 1.18.*
series. gtksourceview2
uses custom build script, and it is very sensitive to changes in Cabal
library. Try to install it using older Cabal
version. E.g. cabal install gtksourceview2 --cabal-lib-version=1.16.0
Upvotes: 1