diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,3 +15,6 @@
 Revised cabal version in attempt to fix build error on Hackage. Build works
 locally, suspect the problem is a quirk of Hackage build system.
 Added some more documentation.
+
+## 0.2.0.2
+Internal library now unnamed. Hoping this fixes Hackage build fail.
diff --git a/riichi-scoring.cabal b/riichi-scoring.cabal
--- a/riichi-scoring.cabal
+++ b/riichi-scoring.cabal
@@ -20,7 +20,7 @@
 -- PVP summary:     +-+------- breaking API changes
 --                  | | +----- non-breaking API additions
 --                  | | | +--- code changes with no API change
-version: 0.2.0.1
+version: 0.2.0.2
 -- A short (one-line) description of the package.
 synopsis: A CLI tool for interpreting and scoring Riichi Mahjong hands.
 -- A longer description of the package.
@@ -52,7 +52,7 @@
 common warnings
   ghc-options: -Wall
 
-library riichi-lib
+library
   exposed-modules:
     Riichi.Display
     Riichi.Meld
@@ -86,7 +86,7 @@
     base >=4.19.2.0 && <5,
     containers >=0.6.8 && <0.8,
     mtl >=2.2.2 && <2.4,
-    riichi-lib,
+    riichi-scoring,
 
   -- Directories containing source files.
   hs-source-dirs: app
@@ -99,7 +99,7 @@
   main-is: Test.hs
   build-depends:
     base >=4.19.2.0 && <5,
-    riichi-lib,
+    riichi-scoring,
     tasty >=1.5.4 && <1.6,
     tasty-hunit >=0.10.2 && <0.11,
 
