packages feed

codex-0.0.1.1: codex.cabal

name:                codex
version:             0.0.1.1
synopsis:            Code Explorer for Cabal
description:         
  This tool download and cache the source code of packages in your local hackage,
  he can then use this cache to generate `tags` files aggregating the sources of all the dependencies of your cabal projects.
  . 
  You basically do `codex update` in your cabal project directory and you'll get a `codex.tags` file
  that you can use in your favorite text editor.

homepage:            http://github.com/aloiscochard/codex
license:             OtherLicense
license-file:        UNLICENSE
author:              Alois Cochard
maintainer:          alois.cochard@gmail.com
category:            Development
build-type:          Simple
cabal-version:       >=1.10

library
  default-language:  Haskell2010
  hs-source-dirs:    src
  ghc-options:       -O2 -threaded -fwarn-incomplete-patterns
  exposed-modules:
    Codex
    Codex.Internal
    Distribution.Hackage.Utils
  build-depends:       
    base >=4.7 && <4.8
    , bytestring
    , Cabal >= 1.19
    , containers
    , directory
    , download-curl
    , filepath
    , hackage-db
    , mtl
    , process
    , tar
    , zlib

executable codex
  default-language:  Haskell2010
  main-is:           src/Main.hs
  ghc-options:       -O2 -threaded -fwarn-incomplete-patterns
  build-depends:       
      base
    , Cabal
    , directory
    , filepath
    , hackage-db
    , MissingH
    , mtl
    , monad-loops
    , codex