diff --git a/CoreDump.cabal b/CoreDump.cabal
--- a/CoreDump.cabal
+++ b/CoreDump.cabal
@@ -1,5 +1,5 @@
 name:                CoreDump
-version:             0.1.0.0
+version:             0.1.0.1
 
 synopsis:
   A GHC plugin for printing GHC's internal Core data structures.
diff --git a/src/CoreDump/Show.hs b/src/CoreDump/Show.hs
--- a/src/CoreDump/Show.hs
+++ b/src/CoreDump/Show.hs
@@ -148,12 +148,15 @@
 instance Show PackageKey where
     show = show . packageKeyString
 
+-- Outputable outputs are not generating valid Haskell syntax, so we use an
+-- extra `show` here.
+
 instance Show Name where
-    show = showOutputable . nameOccName
+    show = show . showOutputable . nameOccName
 
 -- deriving instance Show Name
 instance Show OccName where
-    show = showOutputable
+    show = show . showOutputable
 
 instance Show Coercion where
     show _ = "Coercion"
