packages feed

cabal-build-programs 0.1.0.0 → 0.1.0.1

raw patch · 2 files changed

+4/−3 lines, 2 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Distribution.Simple.BuildPrograms: overlayUserHooks :: UserHooks -> UserHooks

Files

cabal-build-programs.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: fc55553ca764af941d36f1d2ab303878f4af5e82f36b24cf7d98008ec0dbbc4e+-- hash: 3ce5377f253a3b987ca094ca65cbbccb689d28f4b169f00581a840726c0c083b  name:           cabal-build-programs-version:        0.1.0.0+version:        0.1.0.1 synopsis:       Adds executable dependencies to the Cabal build description:    Please see the README on GitHub at <https://github.com/deech/cabal-build-programs#readme> category:       Distribution
src/Distribution/Simple/BuildPrograms.hs view
@@ -25,6 +25,7 @@     , buildProgramsUserHooks     , localBuildInfoWithBuildPrograms     , componentBuildPrograms+    , overlayUserHooks     ) where  import Distribution.Simple(UserHooks(..),simpleUserHooks, defaultMainWithHooks)@@ -298,7 +299,7 @@ -- dependencies. -- -- The easiest way is to use the provided 'defaultMain'. For more advanced use--- check the docs for 'buildProgramsUserHooks' and+-- check the docs for 'buildProgramsUserHooks', 'overlayUserHooks' and -- 'localBuildInfoWithBuildPrograms'. -- --