summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-05-29 21:25:52 +0000
committerPeter Simons <simons@cryp.to>2012-05-29 21:25:52 +0000
commit5fb3ac1d5bcca45245a3590b6361ba448e50f659 (patch)
treef4b93f4a32ab46dd13b249f6ba743eaa4c29eb36 /pkgs/development
parent72a4c7aa8830aa853dd7b1133a5db864c108852e (diff)
downloadnixlib-5fb3ac1d5bcca45245a3590b6361ba448e50f659.tar
nixlib-5fb3ac1d5bcca45245a3590b6361ba448e50f659.tar.gz
nixlib-5fb3ac1d5bcca45245a3590b6361ba448e50f659.tar.bz2
nixlib-5fb3ac1d5bcca45245a3590b6361ba448e50f659.tar.lz
nixlib-5fb3ac1d5bcca45245a3590b6361ba448e50f659.tar.xz
nixlib-5fb3ac1d5bcca45245a3590b6361ba448e50f659.tar.zst
nixlib-5fb3ac1d5bcca45245a3590b6361ba448e50f659.zip
haskell-happstack-data: patched to support current mtl and transformers
svn path=/nixpkgs/trunk/; revision=34287
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/haskell/happstack/happstack-data.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/happstack/happstack-data.nix b/pkgs/development/libraries/haskell/happstack/happstack-data.nix
index bdf27495d82a..aa540e98bd5c 100644
--- a/pkgs/development/libraries/haskell/happstack/happstack-data.nix
+++ b/pkgs/development/libraries/haskell/happstack/happstack-data.nix
@@ -11,6 +11,9 @@ cabal.mkDerivation (self: {
   buildDepends = [
     binary mtl syb sybWithClass sybWithClassInstancesText text time
   ];
+  patchPhase = ''
+    sed -i -e 's|mtl >= 1.1 && < 2.1|mtl|' happstack-data.cabal
+  '';
   meta = {
     homepage = "http://happstack.com";
     description = "Happstack data manipulation libraries";