diff --git a/JSONb.cabal b/JSONb.cabal
--- a/JSONb.cabal
+++ b/JSONb.cabal
@@ -1,10 +1,10 @@
 name                          : JSONb
-version                       : 1.0.6
+version                       : 1.0.7
 category                      : Text
 license                       : BSD3
 license-file                  : LICENSE
 author                        : Jason Dusek
-maintainer                    : jsonb@solidsnack.be
+maintainer                    : oss@solidsnack.be
 homepage                      : http://github.com/solidsnack/JSONb/
 synopsis                      : JSON parser that uses byte strings.
 description                   :
@@ -16,12 +16,21 @@
   Have you considered @aeson@ (<http://hackage.haskell.org/package/aeson>), a
   newer, extensively benchmarked JSON parsing library?
 
-cabal-version                 : >= 1.2.3
+cabal-version                 : >= 1.6
 build-type                    : Simple
 extra-source-files            : README
                                 test/SimpleUnits.hs
 
+source-repository               head
+  type                        : git
+  location                    : http://github.com/solidsnack/JSONb.git
 
+
+flag cli
+  description                 : Enable command line tool.
+  default                     : False
+
+
 library
   build-depends               : base >= 2 && <= 5
                               , containers
@@ -46,7 +55,11 @@
 
 executable                      json-schema
   main-is                     : examples/JSONSchema.hs
-  build-depends               : base 
+  if flag(cli)
+    buildable                 : True
+  else
+    buildable                 : False
+  build-depends               : base >= 2 && <= 5
                               , containers
                               , utf8-string >= 0.3
                               , bytestring >= 0.9
diff --git a/Text/JSONb/Schema/Display.hs b/Text/JSONb/Schema/Display.hs
--- a/Text/JSONb/Schema/Display.hs
+++ b/Text/JSONb/Schema/Display.hs
@@ -73,8 +73,7 @@
 
 space                        =  repeat ' '
 
-{-| Warning -- does not work on empty tries. 
- -}
+-- Warning -- does not work on empty tries. 
 longest_key_len              =  length . foldl1' longest . lazify . Trie.keys
  where
   lazify                     =  fmap $ fromChunks . (:[])
