-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Install Haskell software -- -- This is a tool for deploying software projects into directory -- structures suitable for installation on a system. It builds upon the -- `stack install` command and adds more features. It's also a tool for -- easier AppImage creation. @package hsinstall @version 2.0 -- | Support library for users of the installation script in hsinstall. -- When your project has data files in a resources directory, -- this library can be used to locate those files at runtime. module HSInstall.Resources -- | Get the path to the resources, relative to where the binary was -- installed and executed from. The argument passed here is expected to -- be the getDataDir generated by Cabal at compile time in the -- Paths_YOUR_PROJECT module. -- -- Usage: -- --
--   import HSInstall ( getRsrcDir )
--   import Paths_YOUR_PROJECT ( getDataDir )
--   
--   resourcesDir <- getRsrcDir getDataDir
--   
--   
getRsrcDir :: IO FilePath -> IO FilePath