3ec579f5e1
That version has my patches for the problems that Utility.PosixFiles was working around, so am able to get rid of that module now. This will later allow bringing back the custom-setup stanza in the cabal file. It will need to depend on unix-compat 0.5 on all OS's, which I'm not ready to do yet. This commit was sponsored by Nick Daly on Patreon.
36 lines
932 B
Haskell
36 lines
932 B
Haskell
{-# LANGUAGE PackageImports, CPP #-}
|
|
|
|
module Common (module X) where
|
|
|
|
import Control.Monad as X
|
|
import Control.Monad.IfElse as X
|
|
import Control.Applicative as X
|
|
import Control.Monad.IO.Class as X (liftIO)
|
|
|
|
import Data.Maybe as X
|
|
import Data.List as X hiding (head, tail, init, last)
|
|
import Data.Monoid as X
|
|
import Data.Default as X
|
|
|
|
import System.FilePath as X
|
|
import System.IO as X hiding (FilePath)
|
|
#ifndef mingw32_HOST_OS
|
|
import System.Posix.IO as X hiding (createPipe)
|
|
#endif
|
|
import System.Exit as X
|
|
import System.PosixCompat.Files as X hiding (fileSize)
|
|
|
|
import Utility.Misc as X
|
|
import Utility.Exception as X
|
|
import Utility.SafeCommand as X
|
|
import Utility.Process as X
|
|
import Utility.Path as X
|
|
import Utility.Directory as X
|
|
import Utility.Monad as X
|
|
import Utility.Data as X
|
|
import Utility.Applicative as X
|
|
import Utility.FileSize as X
|
|
import Utility.Network as X
|
|
import Utility.Split as X
|
|
|
|
import Utility.PartialPrelude as X
|