Cabal-2.2.0.0: A framework for packaging Haskell software

Safe HaskellNone
LanguageHaskell2010

Distribution.Backpack.ComponentsGraph

Description

Synopsis

Documentation

type ComponentsGraph = Graph (Node ComponentName Component) Source #

A graph of source-level components by their source-level dependencies

type ComponentsWithDeps = [(Component, [ComponentName])] Source #

A list of components associated with the source level dependencies between them.

componentsGraphToList :: ComponentsGraph -> ComponentsWithDeps Source #

Given the package description and a PackageDescription (used to determine if a package name is internal or not), sort the components in dependency order (fewest dependencies first). This is NOT necessarily the build order (although it is in the absence of Backpack.)

componentCycleMsg :: [ComponentName] -> Doc Source #

Error message when there is a cycle; takes the SCC of components.