definition:
|
resolveDependencies :: Config -> String -> ErrorLogger ResolutionResult
resolveDependencies cfg dir = do
pkgSpec <- loadPackageSpec dir
logInfo $ "Read package spec from " ++ dir
repo <- getRepoForPackageSpec cfg pkgSpec
gc <- GC.readGlobalCache cfg repo
resolveDependenciesForPackageCopy cfg pkgSpec repo gc dir
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Resolves the dependencies for a package copy.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
resolveDependencies
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
CPM.Config.Config -> String
-> CPM.ErrorLogger.ErrorLogger CPM.Resolution.ResolutionResult
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|