module Paths_hoogle (
version,
getBinDir, getLibDir, getDynLibDir, getDataDir, getLibexecDir,
getDataFileName, getSysconfDir
) where
import qualified Control.Exception as Exception
import Data.Version (Version(..))
import System.Environment (getEnv)
import Prelude
#if defined(VERSION_base)
#if MIN_VERSION_base(4,0,0)
catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a
#else
catchIO :: IO a -> (Exception.Exception -> IO a) -> IO a
#endif
#else
catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a
#endif
catchIO = Exception.catch
version :: Version
version = Version [5,0,16] []
bindir, libdir, dynlibdir, datadir, libexecdir, sysconfdir :: FilePath
bindir = "C:\\Users\\ndmit_000\\AppData\\Roaming\\cabal\\bin"
libdir = "C:\\Users\\ndmit_000\\AppData\\Roaming\\cabal\\x86_64-windows-ghc-8.2.1\\hoogle-5.0.14-E7z3G5BbHAGLNTsWn47PNk"
dynlibdir = "C:\\Users\\ndmit_000\\AppData\\Roaming\\cabal\\x86_64-windows-ghc-8.2.1"
datadir = "C:\\Users\\ndmit_000\\AppData\\Roaming\\cabal\\x86_64-windows-ghc-8.2.1\\hoogle-5.0.14"
libexecdir = "C:\\Users\\ndmit_000\\AppData\\Roaming\\cabal\\hoogle-5.0.14-E7z3G5BbHAGLNTsWn47PNk"
sysconfdir = "C:\\Users\\ndmit_000\\AppData\\Roaming\\cabal\\etc"
getBinDir, getLibDir, getDynLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath
getBinDir = catchIO (getEnv "hoogle_bindir") (\_ -> return bindir)
getLibDir = catchIO (getEnv "hoogle_libdir") (\_ -> return libdir)
getDynLibDir = catchIO (getEnv "hoogle_dynlibdir") (\_ -> return dynlibdir)
getDataDir = catchIO (getEnv "hoogle_datadir") (\_ -> return datadir)
getLibexecDir = catchIO (getEnv "hoogle_libexecdir") (\_ -> return libexecdir)
getSysconfDir = catchIO (getEnv "hoogle_sysconfdir") (\_ -> return sysconfdir)
getDataFileName :: FilePath -> IO FilePath
getDataFileName name = do
dir <- getDataDir
return (dir ++ "\\" ++ name)