hgraph/dist/build/autogen/Paths_hgraph.hs

33 lines
1.1 KiB
Haskell
Raw Normal View History

2013-11-14 12:28:05 +00:00
module Paths_hgraph (
version,
getBinDir, getLibDir, getDataDir, getLibexecDir,
getDataFileName
2013-11-14 12:28:05 +00:00
) where
import qualified Control.Exception as Exception
import Data.Version (Version(..))
import System.Environment (getEnv)
catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a
catchIO = Exception.catch
version :: Version
version = Version {versionBranch = [0,0,1], versionTags = []}
bindir, libdir, datadir, libexecdir :: FilePath
2013-11-14 12:28:05 +00:00
2013-11-26 16:55:02 +00:00
bindir = "/homes/sdressel/.cabal/bin"
libdir = "/homes/sdressel/.cabal/lib/hgraph-0.0.1/ghc-7.4.1"
datadir = "/homes/sdressel/.cabal/share/hgraph-0.0.1"
libexecdir = "/homes/sdressel/.cabal/libexec"
2013-11-14 12:28:05 +00:00
getBinDir, getLibDir, getDataDir, getLibexecDir :: IO FilePath
2013-11-14 12:28:05 +00:00
getBinDir = catchIO (getEnv "hgraph_bindir") (\_ -> return bindir)
getLibDir = catchIO (getEnv "hgraph_libdir") (\_ -> return libdir)
getDataDir = catchIO (getEnv "hgraph_datadir") (\_ -> return datadir)
getLibexecDir = catchIO (getEnv "hgraph_libexecdir") (\_ -> return libexecdir)
getDataFileName :: FilePath -> IO FilePath
getDataFileName name = do
dir <- getDataDir
return (dir ++ "/" ++ name)