2020-07-21 23:08:58 +00:00
|
|
|
{-|
|
|
|
|
Module : GHCup.Data.GHCupInfo
|
|
|
|
Description :
|
|
|
|
Copyright : (c) Julian Ospald, 2020
|
|
|
|
License : GPL-3
|
|
|
|
Maintainer : hasufell@hasufell.de
|
|
|
|
Stability : experimental
|
|
|
|
Portability : POSIX
|
|
|
|
-}
|
2020-04-22 17:32:48 +00:00
|
|
|
module GHCup.Data.GHCupInfo where
|
2020-04-10 15:36:27 +00:00
|
|
|
|
2020-04-22 17:32:48 +00:00
|
|
|
import GHCup.Data.GHCupDownloads
|
|
|
|
import GHCup.Data.ToolRequirements
|
2020-04-10 15:36:27 +00:00
|
|
|
import GHCup.Types
|
|
|
|
|
|
|
|
|
|
|
|
ghcupInfo :: GHCupInfo
|
|
|
|
ghcupInfo = GHCupInfo { _toolRequirements = toolRequirements
|
|
|
|
, _ghcupDownloads = ghcupDownloads
|
|
|
|
}
|