diff --git a/Text/PrettyPrint/ANSI/Leijen.hs b/Text/PrettyPrint/ANSI/Leijen.hs
--- a/Text/PrettyPrint/ANSI/Leijen.hs
+++ b/Text/PrettyPrint/ANSI/Leijen.hs
@@ -1,3 +1,4 @@
+{-# LANGUAGE CPP #-}
 -----------------------------------------------------------------------------
 -- |
 -- Module      :  Text.PrettyPrint.ANSI.Leijen
@@ -150,7 +151,9 @@
 
 import Data.String (IsString(..))
 import Data.Maybe (catMaybes)
+#if __GLASGOW_HASKELL__ < 710
 import Data.Monoid (Monoid, mappend, mconcat, mempty)
+#endif
 
 
 infixr 5 </>,<//>,<$>,<$$>
diff --git a/ansi-wl-pprint.cabal b/ansi-wl-pprint.cabal
--- a/ansi-wl-pprint.cabal
+++ b/ansi-wl-pprint.cabal
@@ -1,6 +1,6 @@
 Name:                ansi-wl-pprint
-Version:             0.6.7.2
-Cabal-Version:       >= 1.2
+Version:             0.6.7.3
+Cabal-Version:       >= 1.6
 Category:            User Interfaces, Text
 Synopsis:            The Wadler/Leijen Pretty Printer for colored ANSI terminal output
 Description:         This is a pretty printing library based on Wadler's paper "A Prettier Printer". It has been enhanced with support for ANSI terminal colored output using the ansi-terminal package.
@@ -8,9 +8,14 @@
 License-File:        LICENSE
 Extra-Source-Files:  README.textile
 Author:              Daan Leijen, Max Bolingbroke
-Maintainer:          batterseapower@hotmail.com
-Homepage:            http://github.com/batterseapower/ansi-wl-pprint
+Maintainer:          Edward Kmett <ekmett@gmail.com>
+Bug-Reports:         http://github.com/ekmett/ansi-wl-pprint/issues
+Homepage:            http://github.com/ekmett/ansi-wl-pprint
 Build-Type:          Simple
+
+Source-Repository head
+  Type: git
+  Location: git://github.com/ekmett/ansi-wl-pprint.git
 
 Flag NewBase
         Description:    Choose the new smaller, split-up base package with 6.10
