#haskell folk: how do I verify that my package can be built with bytestring 0.12? There is no GHC releases that bundle that version yet. Is there some flag that could tell it to use a version from Hackage rather than the one included into the GHC distribution?
@minoru Just specify the version in the cabal file of the target package and then call cabal to install them deps?
@L29Ah Oops! I was specifying
--constrain 'bytestring == 1.12.0.2'
, which failed because 1.12.0.2 doesn't exist. The error message looked just like the one I get if a dependency can't be satisfied.Thanks :)