summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-haskell/drift/files/drift-2.4.2-ghc-7.10.patch')
-rw-r--r--dev-haskell/drift/files/drift-2.4.2-ghc-7.10.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev-haskell/drift/files/drift-2.4.2-ghc-7.10.patch b/dev-haskell/drift/files/drift-2.4.2-ghc-7.10.patch
deleted file mode 100644
index c45a2945fd2a..000000000000
--- a/dev-haskell/drift/files/drift-2.4.2-ghc-7.10.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/src/ParseLib2.hs b/src/ParseLib2.hs
-index 730e4be..a7406fa 100644
---- a/src/ParseLib2.hs
-+++ b/src/ParseLib2.hs
-@@ -34,2 +34,3 @@ module ParseLib2
- import Data.Char
-+import Control.Applicative hiding ( many )
- import Control.Monad
-@@ -49,2 +50,6 @@ instance Functor Parser where
-
-+instance Applicative Parser where
-+ pure = return
-+ (<*>) = ap -- defined in Control.Monad
-+
- instance Monad Parser where
-@@ -58,2 +63,6 @@ instance Monad Parser where
-
-+instance Alternative Parser where
-+ (<|>) = mplus
-+ empty = mzero
-+
- instance MonadPlus Parser where