packages feed

codex 0.1.0.2 → 0.1.0.3

raw patch · 2 files changed

+3/−10 lines, 2 filesdep ~codex

Dependency ranges changed: codex

Files

codex.cabal view
@@ -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
src/Distribution/Hackage/Utils.hs view
@@ -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"])