module Paths_feed ( 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,3,11,1] [] 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.2/feed-0.3.11.1-A0K4P5qw0u95aEdNBuQFDD" datadir = "/home/builder/hackage-server/build-cache/tmp-install/share/x86_64-linux-ghc-7.10.2/feed-0.3.11.1" 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 "feed_bindir") (\_ -> return bindir) getLibDir = catchIO (getEnv "feed_libdir") (\_ -> return libdir) getDataDir = catchIO (getEnv "feed_datadir") (\_ -> return datadir) getLibexecDir = catchIO (getEnv "feed_libexecdir") (\_ -> return libexecdir) getSysconfDir = catchIO (getEnv "feed_sysconfdir") (\_ -> return sysconfdir) getDataFileName :: FilePath -> IO FilePath getDataFileName name = do dir <- getDataDir return (dir ++ "/" ++ name)