module Paths_cabal_debian (
    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 [4,30,2] []
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.8.3/cabal-debian-4.30.2"
datadir    = "/home/builder/hackage-server/build-cache/tmp-install/share/x86_64-linux-ghc-7.8.3/cabal-debian-4.30.2"
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 "cabal_debian_bindir") (\_ -> return bindir)
getLibDir = catchIO (getEnv "cabal_debian_libdir") (\_ -> return libdir)
getDataDir = catchIO (getEnv "cabal_debian_datadir") (\_ -> return datadir)
getLibexecDir = catchIO (getEnv "cabal_debian_libexecdir") (\_ -> return libexecdir)
getSysconfDir = catchIO (getEnv "cabal_debian_sysconfdir") (\_ -> return sysconfdir)

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