summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-05-29 21:26:09 +0000
committerPeter Simons <simons@cryp.to>2012-05-29 21:26:09 +0000
commit8fad2b0a9867c1d7b26da57975b89197d8283fa9 (patch)
treebb7ec920f1975ce437544bbb6fffeb7dabb96ad6 /pkgs/development
parent5fb3ac1d5bcca45245a3590b6361ba448e50f659 (diff)
downloadnixlib-8fad2b0a9867c1d7b26da57975b89197d8283fa9.tar
nixlib-8fad2b0a9867c1d7b26da57975b89197d8283fa9.tar.gz
nixlib-8fad2b0a9867c1d7b26da57975b89197d8283fa9.tar.bz2
nixlib-8fad2b0a9867c1d7b26da57975b89197d8283fa9.tar.lz
nixlib-8fad2b0a9867c1d7b26da57975b89197d8283fa9.tar.xz
nixlib-8fad2b0a9867c1d7b26da57975b89197d8283fa9.tar.zst
nixlib-8fad2b0a9867c1d7b26da57975b89197d8283fa9.zip
haskell-happstack-util: patched to support current mtl and transformers
svn path=/nixpkgs/trunk/; revision=34288
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/haskell/happstack/happstack-util.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/happstack/happstack-util.nix b/pkgs/development/libraries/haskell/happstack/happstack-util.nix
index f63d253864c6..b457ec6dc322 100644
--- a/pkgs/development/libraries/haskell/happstack/happstack-util.nix
+++ b/pkgs/development/libraries/haskell/happstack/happstack-util.nix
@@ -12,6 +12,9 @@ cabal.mkDerivation (self: {
     extensibleExceptions filepath hslogger mtl network parsec random
     time unixCompat
   ];
+  patchPhase = ''
+    sed -i -e 's|mtl >= 1.1 && < 2.1|mtl|' happstack-util.cabal
+  '';
   meta = {
     homepage = "http://happstack.com";
     description = "Web framework";