diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+0.1.2.2:
+  * Remove hardcoded path from source.
+
 0.1.2.1:
   * Relax Cabal constraint.
   * Remove halberd constraint. It made the last version unbuildable.
diff --git a/exe/Halberd.hs b/exe/Halberd.hs
--- a/exe/Halberd.hs
+++ b/exe/Halberd.hs
@@ -26,7 +26,7 @@
        (file:_) -> do
          (ParseOk module_) <- parseFile file
          pkgs <- concat <$> mapM (getInstalledPackages (Proxy :: Proxy NamesDB))
-             [UserPackageDB, GlobalPackageDB, SpecificPackageDB "/Users/erik/doc/haskell-suite/.cabal-sandbox/x86_64-osx-haskell-names-0.1-packages.conf.d"]
+             [UserPackageDB, GlobalPackageDB]
          allSuggestions <- evalModuleT (suggestedImports module_) pkgs suffix readInterface
 
          let (suggestions, noSuggestions) = partition (not . null . snd) allSuggestions
diff --git a/halberd.cabal b/halberd.cabal
--- a/halberd.cabal
+++ b/halberd.cabal
@@ -1,5 +1,5 @@
 name:                halberd
-version:             0.1.2.1
+version:             0.1.2.2
 license:             BSD3
 license-file:        LICENSE
 author:              Erik Hesselink, Simon Meier, Tom Lokhorst, Roman Cheplyaka
