{-# LANGUAGE CPP #-}
{-# LANGUAGE NoRebindableSyntax #-}
{-# OPTIONS_GHC -fno-warn-missing-import-lists #-}
module Paths_aws_lambda_haskell_runtime (
    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 [2,0,4] []
bindir, libdir, dynlibdir, 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-8.6.3/aws-lambda-haskell-runtime-2.0.4-KsN7iTgklIFDR9rBARC79e"
dynlibdir  = "/home/builder/hackage-server/build-cache/tmp-install/lib/x86_64-linux-ghc-8.6.3"
datadir    = "/home/builder/hackage-server/build-cache/tmp-install/share/x86_64-linux-ghc-8.6.3/aws-lambda-haskell-runtime-2.0.4"
libexecdir = "/home/builder/hackage-server/build-cache/tmp-install/libexec/x86_64-linux-ghc-8.6.3/aws-lambda-haskell-runtime-2.0.4"
sysconfdir = "/home/builder/hackage-server/build-cache/tmp-install/etc"

getBinDir, getLibDir, getDynLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath
getBinDir = catchIO (getEnv "aws_lambda_haskell_runtime_bindir") (\_ -> return bindir)
getLibDir = catchIO (getEnv "aws_lambda_haskell_runtime_libdir") (\_ -> return libdir)
getDynLibDir = catchIO (getEnv "aws_lambda_haskell_runtime_dynlibdir") (\_ -> return dynlibdir)
getDataDir = catchIO (getEnv "aws_lambda_haskell_runtime_datadir") (\_ -> return datadir)
getLibexecDir = catchIO (getEnv "aws_lambda_haskell_runtime_libexecdir") (\_ -> return libexecdir)
getSysconfDir = catchIO (getEnv "aws_lambda_haskell_runtime_sysconfdir") (\_ -> return sysconfdir)

getDataFileName :: FilePath -> IO FilePath
getDataFileName name = do
  dir <- getDataDir
  return (dir ++ "/" ++ name)