Skip to content

Commit

Permalink
GHC 7.4 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
snoyberg authored and np committed Mar 30, 2014
1 parent d78b59d commit 2c335b0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Stackage/Config.hs
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,9 @@ defaultStablePackages ghcVer = unPackageMap $ execWriter $ do

mapM_ (add "Ryan Newton <ryan.newton@alum.mit.edu>") $ words
"accelerate"
when (ghcVer < GhcMajorVersion 7 6) $ do
addRange "Ryan Newton <ryan.newton@alum.mit.edu>" "accelerate" "< 0.14"
addRange "Ryan Newton <ryan.newton@alum.mit.edu>" "fclabels" "< 2.0"

mapM_ (add "Dan Burton <danburton.email@gmail.com>") $ words =<<
[ "basic-prelude composition io-memoize numbers rev-state runmemo"
Expand Down Expand Up @@ -310,6 +313,9 @@ defaultStablePackages ghcVer = unPackageMap $ execWriter $ do
-- Requires binary 0.7
addRange "FP Complete <michael@fpcomplete.com>" "bson" "< 0.2.3"

-- Version 0.15.3 requires a newer template-haskell
addRange "FP Complete <michael@fpcomplete.com>" "language-ecmascript" "< 0.15.3"

-- io-streams depends on too new a network and too old a test-framework.
-- Therefore, don't use the new websockets which depends on it.
addRange "Michael Snoyman" "websockets" "< 0.8"
Expand Down

0 comments on commit 2c335b0

Please sign in to comment.