haskell-packages.nix: make sure that haskeline-class is built with mtl1
This is required for ghc 7.2.1, for example, where mtl2 has become the default version. Naturally, the build of haskeline-class fails later anyway, but for other reasons. I've notified upstream. svn path=/nixpkgs/trunk/; revision=28502
This commit is contained in:
parent
ac71f2adb8
commit
4b068f6858
@ -655,7 +655,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
haskeline = callPackage ../development/libraries/haskell/haskeline {};
|
||||
|
||||
haskelineClass = callPackage ../development/libraries/haskell/haskeline-class {};
|
||||
haskelineClass = callPackage ../development/libraries/haskell/haskeline-class {
|
||||
mtl = self.mtl1;
|
||||
};
|
||||
|
||||
haskellLexer = callPackage ../development/libraries/haskell/haskell-lexer {};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user