Add a few more packages

This commit is contained in:
Michael Snoyman 2014-08-19 09:57:39 +03:00
parent 723f34f084
commit 09c754b067
2 changed files with 21 additions and 0 deletions

View file

@ -232,6 +232,7 @@ defaultStablePackages ghcVer requireHP = unPackageMap $ execWriter $ do
, "executable-path formatting quandl-api"
, "fgl hmatrix hmatrix-gsl"
, "alex happy"
, "th-lift singletons th-desugar quickcheck-assertions"
]
when (ghcVer < GhcMajorVersion 7 8) $ do -- No GHC 7.8 support
mapM_ (add "FP Complete <michael@fpcomplete.com>") $ words =<<

View file

@ -0,0 +1,20 @@
diff -ruN orig/Test/Run.hs new/Test/Run.hs
--- orig/Test/Run.hs 2014-08-19 09:57:25.537902164 +0300
+++ new/Test/Run.hs 2014-08-19 09:57:25.000000000 +0300
@@ -27,6 +27,7 @@
import Language.Haskell.TH.Desugar.Expand
import Language.Haskell.TH.Desugar.Sweeten
import Language.Haskell.TH
+import Language.Haskell.TH.Syntax (qRunIO)
import Control.Monad
@@ -121,7 +122,7 @@
case (resK, lhs) of
(DStarK, [DVarT _]) -> [| True |]
_ -> do
- runIO $ do
+ qRunIO $ do
putStrLn "Failed bug8884 test:"
putStrLn $ show dinfo
[| False |] )