{-# LANGUAGE CPP #-} {-# LANGUAGE NoRebindableSyntax #-} {-# OPTIONS_GHC -fno-warn-missing-import-lists #-} module Paths_aeson_qq ( 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 [0,8,2] [] bindir, libdir, dynlibdir, datadir, libexecdir, sysconfdir :: FilePath bindir = "/usr/bin" libdir = "/usr/lib/haskell-packages/ghc/lib/x86_64-linux-ghc-8.4.4/aeson-qq-0.8.2-GfElrJUMRRQJ80hvwIxuCJ" dynlibdir = "/usr/lib/haskell-packages/ghc/lib/x86_64-linux-ghc-8.4.4" datadir = "/usr/share/aeson-qq" libexecdir = "/usr/lib/x86_64-linux-ghc-8.4.4/aeson-qq-0.8.2" sysconfdir = "/usr/etc" getBinDir, getLibDir, getDynLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath getBinDir = catchIO (getEnv "aeson_qq_bindir") (\_ -> return bindir) getLibDir = catchIO (getEnv "aeson_qq_libdir") (\_ -> return libdir) getDynLibDir = catchIO (getEnv "aeson_qq_dynlibdir") (\_ -> return dynlibdir) getDataDir = catchIO (getEnv "aeson_qq_datadir") (\_ -> return datadir) getLibexecDir = catchIO (getEnv "aeson_qq_libexecdir") (\_ -> return libexecdir) getSysconfDir = catchIO (getEnv "aeson_qq_sysconfdir") (\_ -> return sysconfdir) getDataFileName :: FilePath -> IO FilePath getDataFileName name = do dir <- getDataDir return (dir ++ "/" ++ name)