| Maintainer | Toshio Ito <debug.ito@gmail.com> |
|---|---|
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Staversion.Internal.Cabal
Description
This is an internal module. End-users should not use it.
Synopsis
- loadCabalFile :: FilePath -> IO (Either ErrorMsg [BuildDepends])
- data Target
- data BuildDepends = BuildDepends {
- depsTarget :: Target
- depsPackages :: [PackageName]
Documentation
loadCabalFile :: FilePath -> IO (Either ErrorMsg [BuildDepends]) Source #
Build target type.
Constructors
| TargetLibrary | the |
| TargetExecutable Text | the |
| TargetTestSuite Text | the |
| TargetBenchmark Text | the |
data BuildDepends Source #
A block of build-depends:.
Constructors
| BuildDepends | |
Fields
| |
Instances
| Show BuildDepends Source # | |
Defined in Staversion.Internal.Cabal Methods showsPrec :: Int -> BuildDepends -> ShowS # show :: BuildDepends -> String # showList :: [BuildDepends] -> ShowS # | |
| Eq BuildDepends Source # | |
Defined in Staversion.Internal.Cabal | |
| Ord BuildDepends Source # | |
Defined in Staversion.Internal.Cabal Methods compare :: BuildDepends -> BuildDepends -> Ordering # (<) :: BuildDepends -> BuildDepends -> Bool # (<=) :: BuildDepends -> BuildDepends -> Bool # (>) :: BuildDepends -> BuildDepends -> Bool # (>=) :: BuildDepends -> BuildDepends -> Bool # max :: BuildDepends -> BuildDepends -> BuildDepends # min :: BuildDepends -> BuildDepends -> BuildDepends # | |