| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Stack.Config
Description
The general Stack configuration that starts everything off. This should be smart to falback if there is no stack.yaml, instead relying on whatever files are available.
If there is no stack.yaml, and there is a cabal.config, we read in those constraints, and if there's a cabal.sandbox.config, we read any constraints from there and also find the package database from there, etc. And if there's nothing, we should probably default to behaving like cabal, possibly with spitting out a warning that "you should run `stk init` to make things better".
- data MiniConfig
- loadConfig :: StackM env m => ConfigMonoid -> Maybe AbstractResolver -> Maybe (Path Abs File) -> m (LoadConfig m)
- loadConfigMaybeProject :: StackM env m => ConfigMonoid -> Maybe AbstractResolver -> Maybe (Project, Path Abs File, ConfigMonoid) -> m (LoadConfig m)
- loadMiniConfig :: MonadIO m => Config -> m MiniConfig
- packagesParser :: Parser [String]
- getLocalPackages :: (StackMiniM env m, HasEnvConfig env) => m (Map (Path Abs Dir) TreatLikeExtraDep)
- resolvePackageEntry :: (StackMiniM env m, HasConfig env) => EnvOverride -> Path Abs Dir -> PackageEntry -> m [(Path Abs Dir, TreatLikeExtraDep)]
- getImplicitGlobalProjectDir :: (MonadIO m, MonadLogger m) => Config -> m (Path Abs Dir)
- getStackYaml :: (StackMiniM env m, HasConfig env) => m (Path Abs File)
- getSnapshots :: (StackMiniM env m, HasConfig env) => m Snapshots
- makeConcreteResolver :: (StackMiniM env m, HasConfig env) => AbstractResolver -> m Resolver
- checkOwnership :: (MonadIO m, MonadCatch m) => Path Abs Dir -> m ()
- getInContainer :: MonadIO m => m Bool
- getInNixShell :: MonadIO m => m Bool
- defaultConfigYaml :: ByteString
Documentation
data MiniConfig Source
An environment with a subset of BuildConfig used for setup.
Arguments
| :: StackM env m | |
| => ConfigMonoid | Config monoid from parsed command-line arguments |
| -> Maybe AbstractResolver | Override resolver |
| -> Maybe (Path Abs File) | Override stack.yaml |
| -> m (LoadConfig m) |
Load the configuration, using current directory, environment variables,
and defaults as necessary. The passed Maybe (Path Abs File) is an
override for the location of the project's stack.yaml.
Arguments
| :: StackM env m | |
| => ConfigMonoid | Config monoid from parsed command-line arguments |
| -> Maybe AbstractResolver | Override resolver |
| -> Maybe (Project, Path Abs File, ConfigMonoid) | Project config to use, if any |
| -> m (LoadConfig m) |
loadMiniConfig :: MonadIO m => Config -> m MiniConfig Source
Load the MiniConfig.
packagesParser :: Parser [String] Source
getLocalPackages :: (StackMiniM env m, HasEnvConfig env) => m (Map (Path Abs Dir) TreatLikeExtraDep) Source
Get packages from EnvConfig, downloading and cloning as necessary. If the packages have already been downloaded, this uses a cached value (
Arguments
| :: (StackMiniM env m, HasConfig env) | |
| => EnvOverride | |
| -> Path Abs Dir | project root |
| -> PackageEntry | |
| -> m [(Path Abs Dir, TreatLikeExtraDep)] |
Resolve a PackageEntry into a list of paths, downloading and cloning as necessary.
getImplicitGlobalProjectDir :: (MonadIO m, MonadLogger m) => Config -> m (Path Abs Dir) Source
Get the location of the implicit global project directory. If the directory already exists at the deprecated location, its location is returned. Otherwise, the new location is returned.
getStackYaml :: (StackMiniM env m, HasConfig env) => m (Path Abs File) Source
This is slightly more expensive than
and should only be used when no asks (bcStackYaml . getBuildConfig)BuildConfig is at hand.
getSnapshots :: (StackMiniM env m, HasConfig env) => m Snapshots Source
Download the Snapshots value from stackage.org.
makeConcreteResolver :: (StackMiniM env m, HasConfig env) => AbstractResolver -> m Resolver Source
Turn an AbstractResolver into a Resolver.
checkOwnership :: (MonadIO m, MonadCatch m) => Path Abs Dir -> m () Source
throws checkOwnership dirUserDoesn'tOwnDirectory if dir
isn't owned by the current user.
If dir doesn't exist, its parent directory is checked instead.
If the parent directory doesn't exist either,
is thrown.NoSuchDirectory (parent dir)
getInContainer :: MonadIO m => m Bool Source
True if we are currently running inside a Docker container.
getInNixShell :: MonadIO m => m Bool Source
True if we are currently running inside a Nix.