You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How should we support packages like proto-lens or gl that generate Haskell modules with a custom Setup file? Allow custom user rules? Actually just run their Setup script?
Some specific packages:
happy, alex: generate template data-files by compiling and running a program with different CPP flags.
pandoc: installs man page
semigroupoids, comonad, distributive: use cabal-doctest
lens: uses cabal-doctest, and also installs an image to be used by the haddocks
entropy: runs a test C program, not sure for what purpose
darcs: generates a custom Version.hs module for embedding more specific version information; also custom logic for linking against libiconv, similar to what used to be in haskeline
gtk2hs: packages like glib use gtk2hs-buildtools:Gtk2HsSetup
The text was updated successfully, but these errors were encountered:
Isn't that basically the only option? Since shake is designed to pick up new dependencies as it goes, is there a way to inspect the results of running Setup, add them to the mix, and carry on?
How should we support packages like
proto-lens
orgl
that generate Haskell modules with a custom Setup file? Allow custom user rules? Actually just run their Setup script?Some specific packages:
happy
,alex
: generate template data-files by compiling and running a program with different CPP flags.pandoc
: installsman
pagesemigroupoids
,comonad
,distributive
: usecabal-doctest
lens
: usescabal-doctest
, and also installs an image to be used by the haddocksentropy
: runs a test C program, not sure for what purposedarcs
: generates a customVersion.hs
module for embedding more specific version information; also custom logic for linking against libiconv, similar to what used to be inhaskeline
gtk2hs
: packages likeglib
usegtk2hs-buildtools:Gtk2HsSetup
The text was updated successfully, but these errors were encountered: