From abf41689cea18380aa7ee8fcb0ca5a34a7beee16 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 14 Aug 2014 15:25:11 -0400 Subject: [PATCH] Update Config.hs to include io-manager. `io-manager` is a small package to allow learning Haskell without concerning oneself on how to do the IO part. Used for homework assignments which consist of real programs for students which don't know (yet) about monads. --- Stackage/Config.hs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Stackage/Config.hs b/Stackage/Config.hs index f378fad2..2f7c3906 100644 --- a/Stackage/Config.hs +++ b/Stackage/Config.hs @@ -441,6 +441,9 @@ defaultStablePackages ghcVer requireHP = unPackageMap $ execWriter $ do mapM_ (add "Simon Michael ") $ words "hledger" + mapM_ (add "Mihai Maruseac ") $ words + "io-manager" + -- Newest hxt requires network 2.4 or newest when (ghcVer == GhcMajorVersion 7 4 && requireHP) $ do addRange "Michael Snoyman" "hxt" "< 9.3.1" @@ -519,4 +522,5 @@ convertGithubUser x = , ("faylang", ["bergmark"]) , ("silkapp", ["bergmark"]) , ("snapframework",["mightybyte"]) + , ("haskell-ro", ["mihaimaruseac"]) ]