diff --git a/codex.cabal b/codex.cabal
--- a/codex.cabal
+++ b/codex.cabal
@@ -1,5 +1,5 @@
 name:                codex
-version:             0.1.0.2
+version:             0.1.0.3
 synopsis:            A ctags file generator for cabal project dependencies.
 description:         
   This tool download and cache the source code of packages in your local hackage,
@@ -64,4 +64,4 @@
     , monad-loops         >= 0.4.2      && < 0.5
     , transformers
     , yaml                >= 0.8.8.3    && < 0.9
-    , codex               == 0.1.0.1
+    , codex               == 0.1.0.3
diff --git a/src/Distribution/Hackage/Utils.hs b/src/Distribution/Hackage/Utils.hs
--- a/src/Distribution/Hackage/Utils.hs
+++ b/src/Distribution/Hackage/Utils.hs
@@ -1,4 +1,3 @@
-{-# LANGUAGE CPP #-}
 module Distribution.Hackage.Utils where
 
 import System.Directory
@@ -8,11 +7,5 @@
 getHackagePath :: IO FilePath
 getHackagePath = do
  homedir <- getHomeDirectory
- return (joinPath [homedir,
-#ifdef IS_DARWIN
-    "Library", "Haskell", "repo-cache"
-#else
-    ".cabal", "packages"
-#endif
-    , "hackage.haskell.org"])
+ return (joinPath [homedir, ".cabal", "packages", "hackage.haskell.org"])
 
