summaryrefslogtreecommitdiff
path: root/src/Propellor
diff options
context:
space:
mode:
Diffstat (limited to 'src/Propellor')
-rw-r--r--src/Propellor/Bootstrap.hs11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Propellor/Bootstrap.hs b/src/Propellor/Bootstrap.hs
index 66192e36..d772d7c7 100644
--- a/src/Propellor/Bootstrap.hs
+++ b/src/Propellor/Bootstrap.hs
@@ -148,9 +148,12 @@ 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"
- , Dep "libghc-concurrent-output-dev"
+ -- Deps that are only needed on old systems.
+ , OldDep "libghc-stm-dev"
]
debdeps Stack =
[ Dep "gnupg"
@@ -169,7 +172,10 @@ 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 =
@@ -190,7 +196,10 @@ 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"
]