packages feed

codex-0.0.1.7: codex.cabal

name:                codex
version:             0.0.1.7
synopsis:            A ctags file generator for cabal project dependencies.
description:         
  This tool download and cache the source code of packages in your local hackage,
  it 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.
  .
  Usage overview can be found in the <http://github.com/aloiscochard/codex#codex README>.

homepage:            http://github.com/aloiscochard/codex
license:             Apache-2.0
license-file:        LICENSE
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:       -fwarn-incomplete-patterns
  exposed-modules:
    Codex
    Codex.Project
    Codex.Internal
    Distribution.Hackage.Utils
  build-depends:       
    base >=4.6 && <4.8
    , bytestring
    , Cabal >= 1.19
    , containers
    , directory
    , download-curl
    , either
    , filepath
    , hackage-db
    , MissingH
    , process
    , tar
    , text
    , transformers
    , zlib

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