diff --git a/README.asciidoc b/README.asciidoc
--- a/README.asciidoc
+++ b/README.asciidoc
@@ -143,19 +143,21 @@
 
 CHANGES
 -------
-1.3.2::
+0.1.3.3::
+  * Fixed build error + cabal things
+0.1.3.2::
   * Removed the MissingH dependency.
-1.3.1::
+0.1.3.1::
   * Added the file Language.Markup
-1.3.0::
+0.1.3.0::
   * Added automatic rewrite rules, see section `Automatic markup'.
-1.2.2::
+0.1.2.2::
   * And classes are now also written to the output file, somewhere I was
     sleeping during all this. :)
-1.2.1::  
+0.1.2.1::  
   * Fixed a regression, detection of language pragmas was apparently broken and
     now they aren't anymore.
-1.2.0::
+0.1.2.0::
   * Hopefully the ``ambiguous infix operator'' error shouldn't occur that often
     anymore.
   * Removed the AGDA dependency for until it actually works.
diff --git a/lhs2TeX-hl.cabal b/lhs2TeX-hl.cabal
--- a/lhs2TeX-hl.cabal
+++ b/lhs2TeX-hl.cabal
@@ -1,5 +1,5 @@
 Name:               lhs2TeX-hl
-Version:            0.1.3.2
+Version:            0.1.3.3
 Cabal-Version:      >= 1.6
 License:            MIT
 Author:             Alessandro Vermeulen <me@alessandrovermeulen.me>
@@ -19,12 +19,15 @@
 License-file:       LICENSE
 Homepage:           http://spockz.github.com/lhs2texhl/
 bug-reports:        http://github.com/spockz/lhs2texhl/issues
+source-repository head
+  type:             git
+  location:         https://github.com/spockz/lhs2texhl
 
 Executable lhs2TeX-hl
   Main-Is:          LiterateHighlighter.hs
   Build-Depends:    base >= 4 && <= 5
                   , haskell98
-                  , haskell-src-exts >= 1.10.2
+                  , haskell-src-exts == 1.11.1
                   , syb >= 0.1.0.1
                   , cmdargs >= 0.1
   hs-source-dirs:   src
diff --git a/src/Language/LaTeX.hs b/src/Language/LaTeX.hs
--- a/src/Language/LaTeX.hs
+++ b/src/Language/LaTeX.hs
@@ -32,6 +32,8 @@
               . replace "<=" "\\ \\leq\\ "
               . replace ">=" "\\ \\geq\\ "
               . replace ">>" "\\ \\sequ\\ "
+              . replace ">>>" "\\ \\ggg\\ "
+              . replace "<<<" "\\ \\lll\\ "              
               . replace ">>=" "\\ \\bind\\ "
               . replace "=<<" "\\ \\rbind\\ "
               . replace "undefined" "\\bot\\  "
diff --git a/src/Literate/Haskell.hs b/src/Literate/Haskell.hs
--- a/src/Literate/Haskell.hs
+++ b/src/Literate/Haskell.hs
@@ -14,7 +14,7 @@
 
 newtype M = M Module deriving (Typeable, Data)
 
-parseFile fp = parseFileWithMode (defaultParseMode { fixities      = baseFixities
+parseFile fp = parseFileWithMode (defaultParseMode { fixities      = Just baseFixities
                                                    , parseFilename = fp      
                                                    } 
                                  )
