summaryrefslogtreecommitdiff
path: root/dev-haskell/top/files/top-1.7-ghc84.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-haskell/top/files/top-1.7-ghc84.patch')
-rw-r--r--dev-haskell/top/files/top-1.7-ghc84.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/dev-haskell/top/files/top-1.7-ghc84.patch b/dev-haskell/top/files/top-1.7-ghc84.patch
deleted file mode 100644
index 58ed02d3ff2a..000000000000
--- a/dev-haskell/top/files/top-1.7-ghc84.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/src/Top/Solver.hs
-+++ b/src/Top/Solver.hs
-@@ -26,2 +26,3 @@ import Top.Constraint.Information
- import Control.Monad.Writer
-+import qualified Data.Semigroup as S
-
-@@ -170,2 +171,5 @@ evalBasicMonad = runWriter . flip evalStateFixT empty
-
-+instance S.Semigroup LogEntries where
-+ (<>) (LogEntries f) (LogEntries g) = LogEntries (f . g)
-+
- instance Monoid LogEntries where