<div dir="ltr">That's good news. I think the community will benefit from a healthy competition among the tools. It is good to have choices in terms of the front end but I would rather prefer a unified specification of configuration. Currently with a stack workflow one has to deal with two config files i.e. stack.yaml and project.cabal. There is no reason why the stack and cabal configs cannot be unified. The concept of frozen snapshots is generic and useful enough to be incorporated as a common specification used by all tools. If there is a unified config then the same package can be used with stack or cabal, with hackage or stackage without any problems, choose what you prefer.<div><br></div><div>Another point that I want to make is that I have found the cabal config files hard to deal with. There are a number of annoying problems with it and it lacks in reuse. That is the reason for tools like hpack (<a href="https://github.com/sol/hpack">https://github.com/sol/hpack</a>) to be built to overcome those problems. I think the problems that hpack solves should be natively solved by cabal. I guess these problems are long pending and cabal did not evolve fast enough. That could be one of the reasons for wrappers on top of cabal or competing tools like stack getting created.</div><div><br></div><div>Are there any thoughts going towards a better config specification? While we are at it it maybe good to have an extensible config which can provide optional tool specific extensions.</div><div><br></div><div>-harendra</div></div><div class="gmail_extra"><br><div class="gmail_quote">On 15 September 2016 at 06:12, Duncan Coutts via Haskell-Cafe <span dir="ltr"><<a href="mailto:haskell-cafe@haskell.org" target="_blank">haskell-cafe@haskell.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Tue, 2016-09-13 at 14:58 -0400, Richard Eisenberg wrote:<br>
> I’ve watched the recent back-and-forth about stack with quite a bit<br>
> of interest (as many of us have). The discussion inspired me to take<br>
> another look at stack. Here are the results of that foray.<br>
<br>
</span>Since this is all being discussed now, it is perhaps worth explaining<br>
what the cabal developers are working on and the direction they're<br>
going.<br>
<br>
The cabal tool is getting a major overhaul. At this point there's a<br>
relatively large group of people who have been "dogfooding" it in their<br>
normal daily work for months (and for a few brave users since the<br>
beginning of the year).<br>
<br>
There is a tech preview of this in the 1.24 release. The latest git<br>
version has a user guide which explains things in more detail, and what<br>
you can expect to work already and what is known to be incomplete<br>
(including several temporary workarounds for missing features).<br>
<br>
<a href="https://cabal.readthedocs.io/en/latest/nix-local-build-overview.html" rel="noreferrer" target="_blank">https://cabal.readthedocs.io/<wbr>en/latest/nix-local-build-<wbr>overview.html</a><br>
<br>
What is broadly the same is that it still supports the "library solver-<br>
based, work with my current ghc / environment" style that people have<br>
mentioned in this thread. For example by default it picks up the ghc on<br>
your path (and will automagically do the right thing if you change your<br>
path).<br>
<br>
That said, the intention is also to better support a "application<br>
frozen / package collection" style, which is the style that stack<br>
supports well currently.<br>
<br>
What is new is that it does what it does a whole lot better, more<br>
conveniently, more predictably. There's a lot fewer cases where you<br>
have to use multiple commands to do various steps. Much of the time you<br>
can simply ask to build/repl something, and everything else is<br>
automatic (and quick to not do much if not much changed). It's more<br>
predictable in that it's much more deterministic. The choices about<br>
what versions etc are picked depend only on your environment (e.g. ghc<br>
version), hackage snapshot and local explicit project state. In<br>
particular it does not matter what you installed previously. (To<br>
support the application/frozen workflows these aspects of the<br>
environment can all be captured and frozen in a project file.)<br>
<br>
It also avoids the "cabal hell" issues of clashing installed versions.<br>
Or to put it another way, it's a bit like sandboxing but without the<br>
mental overhead or the waiting around for everything to build (because<br>
there's automatic maximal sharing of built packages, a la nix).<br>
<br>
It *is* project based, but a minimal project can actually be implicit,<br>
and most projects don't need to specify anything more than a list (or<br>
glob) of the directories of the packages in the project.<br>
<br>
One of the things you were mentioning was how nice it is to just be<br>
able to run ghc or ghci on a source file, or even without any file,<br>
just to play around. A feature that will be landing soon in cabal-<br>
install head is the ability to simply run ghc/ghci within a cabal<br>
project directory and ghc will start up in the environment of the<br>
project. No extra wrapper scripts, shell sessions or env vars<br>
necessary.<br>
<br>
So the short term goal is to get all this to the stage where it can<br>
replace the default UI in the cabal tool, and thereafter one goal is to<br>
better support the workflow style that stack currently supports well,<br>
ie applications with frozen / carefully change-controlled environment,<br>
and package collections/snapshots chosen by 3rd parties.<br>
<br>
I should also say that any help is most welcome. Development takes<br>
place on github. We now have several active reviewers so review &<br>
feedback on contributions is very quick. It's not all just hard<br>
problems, there's plenty to do for newcommers too (e.g. write that<br>
tutorial!). There's an active #hackage IRC channel. Newcommers are<br>
always welcome.<br>
<span class="HOEnZb"><font color="#888888"><br>
Duncan<br>
</font></span><div class="HOEnZb"><div class="h5">______________________________<wbr>_________________<br>
Haskell-Cafe mailing list<br>
To (un)subscribe, modify options or view archives go to:<br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-<wbr>bin/mailman/listinfo/haskell-<wbr>cafe</a><br>
Only members subscribed via the mailman list are allowed to post.</div></div></blockquote></div><br></div>