summaryrefslogtreecommitdiff
path: root/src/Propellor/Bootstrap.hs
diff options
context:
space:
mode:
authorJoey Hess2020-06-10 14:40:29 -0400
committerJoey Hess2020-06-10 14:40:29 -0400
commitdbd3ba3400a3097498252097540ffe8075b00833 (patch)
tree1f319032876e2b7ed217ce4c0ec541e033eee1ad /src/Propellor/Bootstrap.hs
parent8deac74e2c6d07537ee0c95928af069c8558390e (diff)
Added dependency on concurrent-output; removed embedded copy.
Trying again what failed in 2018 (commit 02eca2ae4cf51d8e83d94d8359e15ac053451109). I hope the problem was a broken old version of concurrent-output and that it will be ok now. This commit was sponsored by Denis Dzyubenko on Patreon.
Diffstat (limited to 'src/Propellor/Bootstrap.hs')
-rw-r--r--src/Propellor/Bootstrap.hs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/Propellor/Bootstrap.hs b/src/Propellor/Bootstrap.hs
index d772d7c7..3621cabb 100644
--- a/src/Propellor/Bootstrap.hs
+++ b/src/Propellor/Bootstrap.hs
@@ -148,12 +148,8 @@ depsCommand bs msys = "( " ++ intercalate " ; " (go bs) ++ ") || true"
, Dep "libghc-ifelse-dev"
, Dep "libghc-network-dev"
, Dep "libghc-mtl-dev"
- , Dep "libghc-transformers-dev"
, Dep "libghc-exceptions-dev"
- , Dep "libghc-text-dev"
, Dep "libghc-hashable-dev"
- -- Deps that are only needed on old systems.
- , OldDep "libghc-stm-dev"
]
debdeps Stack =
[ Dep "gnupg"
@@ -172,10 +168,7 @@ depsCommand bs msys = "( " ++ intercalate " ; " (go bs) ++ ") || true"
, "hs-IfElse"
, "hs-network"
, "hs-mtl"
- , "hs-transformers-base"
, "hs-exceptions"
- , "hs-stm"
- , "hs-text"
, "hs-hashable"
]
fbsddeps Stack =
@@ -196,10 +189,7 @@ depsCommand bs msys = "( " ++ intercalate " ; " (go bs) ++ ") || true"
, "haskell-ifelse"
, "haskell-network"
, "haskell-mtl"
- , "haskell-transformers-base"
, "haskell-exceptions"
- , "haskell-stm"
- , "haskell-text"
, "haskell-hashable"
, "haskell-type-errors"
]