2020-04-22 19:32:48 +02:00
|
|
|
module GHCup.Data.GHCupInfo where
|
2020-04-10 17:36:27 +02:00
|
|
|
|
2020-04-22 19:32:48 +02:00
|
|
|
import GHCup.Data.GHCupDownloads
|
|
|
|
|
import GHCup.Data.ToolRequirements
|
2020-04-10 17:36:27 +02:00
|
|
|
import GHCup.Types
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ghcupInfo :: GHCupInfo
|
|
|
|
|
ghcupInfo = GHCupInfo { _toolRequirements = toolRequirements
|
|
|
|
|
, _ghcupDownloads = ghcupDownloads
|
|
|
|
|
}
|