definition:
|
acquireAndInstallPackageFromSource :: Config -> Package -> ErrorLogger ()
acquireAndInstallPackageFromSource cfg reppkg = do
pkg <- readPackageFromRepository cfg reppkg
case source pkg of
Nothing -> fail $ "No source specified for " ++ packageId pkg
Just s -> do logInfo $ "Installing package '" ++ packageId pkg ++ "'..."
installFromSource cfg pkg s
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Acquires a package from the source specified in its specification and
--- installs it to the global package cache.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
acquireAndInstallPackageFromSource
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
CPM.Config.Config -> CPM.Package.Package -> CPM.ErrorLogger.ErrorLogger ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|