Author: simons
Date: Sun Aug  7 20:24:59 2011
New Revision: 28279
URL: https://svn.nixos.org/websvn/nix/?rev=28279&sc=1

Log:
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.

Modified:
   nixpkgs/trunk/pkgs/top-level/haskell-packages.nix

Modified: nixpkgs/trunk/pkgs/top-level/haskell-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Sun Aug  7 20:24:54 
2011        (r28278)
+++ nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Sun Aug  7 20:24:59 
2011        (r28279)
@@ -955,7 +955,9 @@
 
   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 {};
 
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to