diff options
Diffstat (limited to 'src/CabalHelper/Compiletime/Types.hs')
| -rw-r--r-- | src/CabalHelper/Compiletime/Types.hs | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/src/CabalHelper/Compiletime/Types.hs b/src/CabalHelper/Compiletime/Types.hs index 6591513..94e5c8e 100644 --- a/src/CabalHelper/Compiletime/Types.hs +++ b/src/CabalHelper/Compiletime/Types.hs @@ -562,12 +562,17 @@ data Programs = Programs      , ghcPkgProgram :: !FilePath      -- ^ The path to the @ghc-pkg@ program. If not changed it will be derived      -- from the path to 'ghcProgram'. + +    , haddockProgram :: !FilePath +    -- ^ The path to the @haddock@ program. If not changed it will be +    -- derived from the path to 'ghcProgram'.      } deriving (Eq, Ord, Show, Read, Generic, Typeable)  -- | By default all programs use their unqualified names, i.e. they will be  -- searched for on @PATH@.  defaultPrograms :: Programs -defaultPrograms = Programs "cabal" [] []  "stack" [] [] [] "ghc" "ghc-pkg" +defaultPrograms = +  Programs "cabal" [] []  "stack" [] [] [] "ghc" "ghc-pkg" "haddock"  data EnvOverride      = EnvPrepend String | 
