module Paths_language_thrift ( version, getBinDir, getLibDir, getDataDir, getLibexecDir, getDataFileName, getSysconfDir ) where import qualified Control.Exception as Exception import Data.Version (Version(..)) import System.Environment (getEnv) import Prelude catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a catchIO = Exception.catch version :: Version version = Version [0,9,0,0] [] bindir, libdir, datadir, libexecdir, sysconfdir :: FilePath bindir = "/home/builder/hackage-server/build-cache/tmp-install/bin" libdir = "/home/builder/hackage-server/build-cache/tmp-install/lib/x86_64-linux-ghc-7.10.3/language-thrift-0.9.0.0-8lUFE7kYDEK8G8s3sHuHny" datadir = "/home/builder/hackage-server/build-cache/tmp-install/share/x86_64-linux-ghc-7.10.3/language-thrift-0.9.0.0" libexecdir = "/home/builder/hackage-server/build-cache/tmp-install/libexec" sysconfdir = "/home/builder/hackage-server/build-cache/tmp-install/etc" getBinDir, getLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath getBinDir = catchIO (getEnv "language_thrift_bindir") (\_ -> return bindir) getLibDir = catchIO (getEnv "language_thrift_libdir") (\_ -> return libdir) getDataDir = catchIO (getEnv "language_thrift_datadir") (\_ -> return datadir) getLibexecDir = catchIO (getEnv "language_thrift_libexecdir") (\_ -> return libexecdir) getSysconfDir = catchIO (getEnv "language_thrift_sysconfdir") (\_ -> return sysconfdir) getDataFileName :: FilePath -> IO FilePath getDataFileName name = do dir <- getDataDir return (dir ++ "/" ++ name)