Switch default Haskell implementation to Haskell Platform 2013.2.0.0.

This makes GHC 7.6.3 is our default compiler.
This commit is contained in:
Peter Simons
2013-05-30 12:33:43 +02:00
parent 6039e98991
commit 8dbe2decf9
3 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -11,8 +11,8 @@ let
ghc704 = "ghc704";
ghc742 = "ghc742";
ghc763 = "ghc763";
default = [ ghc742 ];
latest = [ ghc763 ];
default = [ ghc763 ];
latest = [ ];
all = [ ghc6104 ghc6123 ghc704 ghc742 ghc763 ];
allBut = platform: pkgs.lib.filter (x: platform != x) all;