
25 Apr
2014
25 Apr
'14
10:55 a.m.
Hi John, On Fri, Apr 25, 2014 at 09:41:32AM -0500, John M. Dlugosz wrote:
How do you normally go about developing a new version of a package?
A cabal sandbox with 'add-source' might help here. If your directory tree looks something like: /whatever/customgloss /whatever/yourproject Then you could do: cd /whatever/yourproject cabal sandbox init cabal sandbox add-source ../customgloss cabal install If your code in 'customgloss' changes, then calling again 'cabal install' in 'yourproject' will rebuild 'customgloss'. But you might rethink if copying 'gloss' that way is really a good long term solution. Greetings, Daniel