Add CentoOS tool requirements

This commit is contained in:
Julian Ospald 2020-04-27 21:52:44 +02:00
parent 2e28b0d00f
commit fad9f83e6a
No known key found for this signature in database
GPG Key ID: 511B62C09D50CD28
1 changed files with 30 additions and 0 deletions

View File

@ -5,6 +5,7 @@ module GHCup.Data.ToolRequirements where
import GHCup.Types
import GHCup.Utils.String.QQ
import GHCup.Utils.Version.QQ
import qualified Data.Map as M
@ -61,6 +62,35 @@ toolRequirements = M.fromList
)
]
)
, ( Linux CentOS
, M.fromList
[ ( Nothing
, Requirements
[ "gcc"
, "gcc-c++"
, "gmp"
, "make"
, "ncurses"
, "ncurses-compat-libs"
, "xz"
, "perl"
]
""
),
( Just [vers|7|]
, Requirements
[ "gcc"
, "gcc-c++"
, "gmp"
, "make"
, "ncurses"
, "xz"
, "perl"
]
""
)
]
)
, ( Darwin
, M.fromList
[ ( Nothing