module Paths_LambdaHack ( 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 {versionBranch = [0,4,100,0], versionTags = []} bindir, libdir, datadir, libexecdir, sysconfdir :: FilePath bindir = "/tmp/doc-package-Ak2Hyjd/prefix/bin" libdir = "/tmp/doc-package-Ak2Hyjd/prefix/lib/x86_64-linux-ghc-7.8.3.20141119/LambdaHack-0.4.100.0" datadir = "/tmp/doc-package-Ak2Hyjd/prefix/share/x86_64-linux-ghc-7.8.3.20141119/LambdaHack-0.4.100.0" libexecdir = "/tmp/doc-package-Ak2Hyjd/prefix/libexec" sysconfdir = "/tmp/doc-package-Ak2Hyjd/prefix/etc" getBinDir, getLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath getBinDir = catchIO (getEnv "LambdaHack_bindir") (\_ -> return bindir) getLibDir = catchIO (getEnv "LambdaHack_libdir") (\_ -> return libdir) getDataDir = catchIO (getEnv "LambdaHack_datadir") (\_ -> return datadir) getLibexecDir = catchIO (getEnv "LambdaHack_libexecdir") (\_ -> return libexecdir) getSysconfDir = catchIO (getEnv "LambdaHack_sysconfdir") (\_ -> return sysconfdir) getDataFileName :: FilePath -> IO FilePath getDataFileName name = do dir <- getDataDir return (dir ++ "/" ++ name)