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:45 +0000
committerPeter Simons <simons@cryp.to>2012-05-29 21:25:45 +0000
commit72a4c7aa8830aa853dd7b1133a5db864c108852e (patch)
tree7f26d338956ecb2cb33bbd46c5c6c0c75e666a50 /pkgs/development
parent272753809c3f7208a484f6fee69220e9d11c2fbb (diff)
downloadnixlib-72a4c7aa8830aa853dd7b1133a5db864c108852e.tar
nixlib-72a4c7aa8830aa853dd7b1133a5db864c108852e.tar.gz
nixlib-72a4c7aa8830aa853dd7b1133a5db864c108852e.tar.bz2
nixlib-72a4c7aa8830aa853dd7b1133a5db864c108852e.tar.lz
nixlib-72a4c7aa8830aa853dd7b1133a5db864c108852e.tar.xz
nixlib-72a4c7aa8830aa853dd7b1133a5db864c108852e.tar.zst
nixlib-72a4c7aa8830aa853dd7b1133a5db864c108852e.zip
haskell-Shellac-haskeline: patched to support current mtl and transformers
svn path=/nixpkgs/trunk/; revision=34286
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix b/pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix
index 4ce09964cc67..9f75a09ee690 100644
--- a/pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix
+++ b/pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix
@@ -5,6 +5,9 @@ cabal.mkDerivation (self: {
   version = "0.2.0.1";
   sha256 = "1xvs2ni83yyf7rx3ikmn2bkx20fyj03d03crqyyfw28mikhgv5br";
   buildDepends = [ haskeline mtl Shellac ];
+  patchPhase = ''
+    sed -i -e 's|mtl>=1.1 && < 2.1|mtl|' Shellac-haskeline.cabal
+  '';
   meta = {
     description = "Haskeline backend module for Shellac";
     license = self.stdenv.lib.licenses.bsd3;