Difference between revisions of "Stackage"

From HaskellWiki
Jump to navigation Jump to search
(Updated explanation)
Line 11: Line 11:
 
== Links ==
 
== Links ==
   
* [https://www.fpcomplete.com/blog/2014/05/stackage-server Stackage Server]
+
* [http://www.stackage.org/ Stackage Homepage]
  +
* [https://www.fpcomplete.com/blog/2014/05/stackage-server Stackage Server blog post]
 
* [https://github.com/fpco/stackage Repository]
 
* [https://github.com/fpco/stackage Repository]
 
* [https://groups.google.com/d/forum/stackage Mailinglist]
 
* [https://groups.google.com/d/forum/stackage Mailinglist]

Revision as of 08:25, 13 November 2014

Stackage is an infrastructure to create stable builds of complete package sets (henceforth we call them “snapshots”). Think “stable Hackage”.

There is an upcoming Stackage server (a la Hackage server) which will be released for beta in the next month. This can be used as a drop-in replacement for Hackage, by adding a link (as from here to the repo in your .cabal file:

remote-repo: stackage:http://www.stackage.org/stackage/44ea140bd97cbb0f6140d331f8f7f8667a637eda

And then cabal update and then now everything that you install should build and pass tests.

Links