packages feed

licensor-0.5.0: licensor.cabal

cabal-version: 2.2

name:           licensor
version:        0.5.0
synopsis:       A license compatibility helper
description:    A license compatibility helper.
category:       Distribution
stability:      Experimental
homepage:       https://licensor.jpvillaisaza.co/
bug-reports:    https://github.com/jpvillaisaza/licensor/issues
author:         J. P. Villa Isaza <jpvillaisaza@gmail.com>
maintainer:     J. P. Villa Isaza <jpvillaisaza@gmail.com>
copyright:      2016 J. P. Villa Isaza
license:        MIT
license-file:   LICENSE.md
build-type:     Simple

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

common common
  build-depends:
      Cabal >= 3.0.1 && < 3.3
    , base >= 4.13.0 && < 4.15
    , containers
    , directory
  default-language: Haskell2010
  ghc-options:
      -Wall

library
  import:
      common
  hs-source-dirs:
      src
  exposed-modules:
      Licensor
  other-modules:
      Paths_licensor
  autogen-modules:
      Paths_licensor
  build-depends:
      bytestring
    , http-client >= 0.6.4 && < 0.8
    , http-client-tls >= 0.3.5 && < 0.4
    , process
    , tar >= 0.5.1 && < 0.6
    , temporary >= 1.3 && < 1.4
    , zlib >= 0.6.2 && < 0.7

executable licensor
  import:
      common
  hs-source-dirs:
      app
  main-is:
      Main.hs
  build-depends:
      licensor
  ghc-options:
      -threaded -rtsopts -with-rtsopts=-N

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