packages feed

licensor-0.2.0: licensor.cabal

name: licensor
version: 0.2.0

build-type: Simple
cabal-version: >= 1.21

license: MIT
license-file: LICENSE.md

copyright: 2016 Juan Pedro Villa Isaza
author: Juan Pedro Villa Isaza <jpvillaisaza@gmail.com>
maintainer: Juan Pedro Villa Isaza <jpvillaisaza@gmail.com>

stability: Experimental

homepage: https://github.com/jpvillaisaza/licensor
bug-reports: https://github.com/jpvillaisaza/licensor/issues

synopsis: A license compatibility helper
description: A license compatibility helper.

category: Distribution

tested-with: GHC == 7.10.3, GHC == 8.0.1

extra-source-files: CHANGELOG.md, README.md


library
  hs-source-dirs:
      src
  exposed-modules:
      Licensor
  other-modules:
      Paths_licensor
  build-depends:
      base >= 4.8 && < 4.10
    , bytestring
    , Cabal >= 1.22 && < 1.25
    , containers
    , directory
    , http-conduit >= 2.1 && < 2.3
    , process
  default-language:
      Haskell2010
  ghc-options:
      -Wall


executable licensor
  main-is:
      Main.hs
  build-depends:
      base >= 4.8 && < 5.0
    , Cabal >= 1.22 && < 1.25
    , cmdargs >= 0.10 && < 0.11
    , containers
    , directory
    , licensor
  default-language:
      Haskell2010
  ghc-options:
      -Wall -threaded -rtsopts -with-rtsopts=-N


source-repository head
  type: git
  location: https://github.com/jpvillaisaza/licensor