haskell-packages.nix: unsuccessful attempted to salvage 'salviaProtocol'

The package can't deal with modern versions of the transformers library.
I managed to get it past the "cabal configure" stage by passing the old
version of parsec, but the build fails later anyway.

svn path=/nixpkgs/trunk/; revision=28279
This commit is contained in:
Peter Simons 2011-08-07 20:24:59 +00:00
parent c6edd9a278
commit 7dbf9f3c7a

View File

@ -955,7 +955,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
salvia = callPackage ../development/libraries/haskell/salvia {};
salviaProtocol = callPackage ../development/libraries/haskell/salvia-protocol {};
salviaProtocol = callPackage ../development/libraries/haskell/salvia-protocol {
parsec = self.parsec2;
};
scion = callPackage ../development/libraries/haskell/scion {};