-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Secure download of packages for cabal-install -- -- For more information, see -- https://www.stackage.org/package/stackage-install @package stackage-install @version 0.1.0.0 -- | Functionality for downloading packages securely for cabal's usage. module Stackage.Install -- | Run cabal install with --dry-run, determine necessary dependencies, -- download them, and rerun cabal install without --dry-run. -- -- Since 0.1.0.0 install :: Settings -> [String] -> IO ExitCode -- | Download the given name,version pairs into the directory expected by -- cabal. -- -- Since 0.1.0.0 download :: Foldable f => Settings -> f (String, String) -> IO () -- | Settings used by download and install. -- -- Since 0.1.0.0 data Settings -- | Default value for Settings. -- -- Since 0.1.0.0 defaultSettings :: Settings