Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Synopsis
- data DumpPackage = DumpPackage {
- dpGhcPkgId :: !GhcPkgId
- dpPackageIdent :: !PackageIdentifier
- dpParentLibIdent :: !(Maybe PackageIdentifier)
- dpLicense :: !(Maybe License)
- dpLibDirs :: ![FilePath]
- dpLibraries :: ![Text]
- dpHasExposedModules :: !Bool
- dpExposedModules :: !(Set ModuleName)
- dpDepends :: ![GhcPkgId]
- dpHaddockInterfaces :: ![FilePath]
- dpHaddockHtml :: !(Maybe FilePath)
- dpIsExposed :: !Bool
Documentation
data DumpPackage Source #
Type representing dump information for a single package, as output by the
ghc-pkg describe
command.
DumpPackage | |
|
Instances
Read DumpPackage Source # | |
Defined in Stack.Types.DumpPackage readsPrec :: Int -> ReadS DumpPackage # readList :: ReadS [DumpPackage] # readPrec :: ReadPrec DumpPackage # readListPrec :: ReadPrec [DumpPackage] # | |
Show DumpPackage Source # | |
Defined in Stack.Types.DumpPackage showsPrec :: Int -> DumpPackage -> ShowS # show :: DumpPackage -> String # showList :: [DumpPackage] -> ShowS # | |
Eq DumpPackage Source # | |
Defined in Stack.Types.DumpPackage (==) :: DumpPackage -> DumpPackage -> Bool # (/=) :: DumpPackage -> DumpPackage -> Bool # |