From 8473822476c6bfbf703650277a0933bd23d578d7 Mon Sep 17 00:00:00 2001 From: Joey Eremondi Date: Wed, 10 Dec 2014 14:32:49 +0100 Subject: [PATCH 1/3] Add Elm packages and remaining dependencies --- Stackage/Config.hs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Stackage/Config.hs b/Stackage/Config.hs index 5027427b..3804bdcf 100644 --- a/Stackage/Config.hs +++ b/Stackage/Config.hs @@ -652,8 +652,9 @@ defaultStablePackages ghcVer requireHP = unPackageMap $ execWriter $ do mapM_ (add "Alexander Thiemann ") $ words "graph-core reroute Spock" - mapM_ (add "Joey Eremondi ") $ words - "prettyclass language-glsl union-find aeson-pretty QuasiText" + mapM_ (add "Joey Eremondi ") $ + words "prettyclass language-glsl union-find aeson-pretty QuasiText" ++ + words "digest zip-archive elm-compiler elm-package elm-build-lib elm-core-sources Haskelm" -- https://github.com/fpco/stackage/issues/217 addRange "Michael Snoyman" "transformers" "< 0.4" From 0f0f870ecbc9069ee26edab8bbc6d2f261683f1e Mon Sep 17 00:00:00 2001 From: Joey Eremondi Date: Sat, 13 Dec 2014 14:14:36 +0100 Subject: [PATCH 2/3] Haskelm is not ready yet --- Stackage/Config.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Stackage/Config.hs b/Stackage/Config.hs index 3804bdcf..300e6baa 100644 --- a/Stackage/Config.hs +++ b/Stackage/Config.hs @@ -654,7 +654,7 @@ defaultStablePackages ghcVer requireHP = unPackageMap $ execWriter $ do mapM_ (add "Joey Eremondi ") $ words "prettyclass language-glsl union-find aeson-pretty QuasiText" ++ - words "digest zip-archive elm-compiler elm-package elm-build-lib elm-core-sources Haskelm" + words "digest zip-archive elm-compiler elm-package elm-core-sources elm-build-lib" -- https://github.com/fpco/stackage/issues/217 addRange "Michael Snoyman" "transformers" "< 0.4" From 9e4231c5a020887b090397dc564d11ace786907d Mon Sep 17 00:00:00 2001 From: Joey Eremondi Date: Sat, 13 Dec 2014 14:17:40 +0100 Subject: [PATCH 3/3] Update Config.hs --- Stackage/Config.hs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Stackage/Config.hs b/Stackage/Config.hs index 300e6baa..79ca8db7 100644 --- a/Stackage/Config.hs +++ b/Stackage/Config.hs @@ -652,9 +652,10 @@ defaultStablePackages ghcVer requireHP = unPackageMap $ execWriter $ do mapM_ (add "Alexander Thiemann ") $ words "graph-core reroute Spock" - mapM_ (add "Joey Eremondi ") $ - words "prettyclass language-glsl union-find aeson-pretty QuasiText" ++ - words "digest zip-archive elm-compiler elm-package elm-core-sources elm-build-lib" + mapM_ (add "Joey Eremondi ") $ words =<< + [ "prettyclass language-glsl union-find aeson-pretty QuasiText" + , "digest zip-archive elm-compiler elm-package elm-core-sources elm-build-lib" + ] -- https://github.com/fpco/stackage/issues/217 addRange "Michael Snoyman" "transformers" "< 0.4"