module Paths_zim_parser (
version,
getBinDir, getLibDir, 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 [0,2,1,0] []
bindir, libdir, datadir, libexecdir, sysconfdir :: FilePath
bindir = "/home/kint/.cabal/bin"
libdir = "/home/kint/.cabal/lib/x86_64-linux-ghc-8.0.1/zim-parser-0.2.1.0-866VbF5GBeXGkN8SRT0eHd"
datadir = "/home/kint/.cabal/share/x86_64-linux-ghc-8.0.1/zim-parser-0.2.1.0"
libexecdir = "/home/kint/.cabal/libexec"
sysconfdir = "/home/kint/.cabal/etc"
getBinDir, getLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath
getBinDir = catchIO (getEnv "zim_parser_bindir") (\_ -> return bindir)
getLibDir = catchIO (getEnv "zim_parser_libdir") (\_ -> return libdir)
getDataDir = catchIO (getEnv "zim_parser_datadir") (\_ -> return datadir)
getLibexecDir = catchIO (getEnv "zim_parser_libexecdir") (\_ -> return libexecdir)
getSysconfDir = catchIO (getEnv "zim_parser_sysconfdir") (\_ -> return sysconfdir)
getDataFileName :: FilePath -> IO FilePath
getDataFileName name = do
dir <- getDataDir
return (dir ++ "/" ++ name)