From 15af251f382bce22b7543dbcf198bcc16a2eb726 Mon Sep 17 00:00:00 2001 From: Juan Pedro Villa Isaza <584947+jpvillaisaza@users.noreply.github.com> Date: Sun, 16 Feb 2020 11:32:32 -0500 Subject: [PATCH] Add generated Cabal file --- licensor.cabal | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 licensor.cabal diff --git a/licensor.cabal b/licensor.cabal new file mode 100644 index 0000000..a4e025f --- /dev/null +++ b/licensor.cabal @@ -0,0 +1,59 @@ +cabal-version: 1.12 + +-- This file has been generated from package.yaml by hpack version 0.31.2. +-- +-- see: https://github.com/sol/hpack +-- +-- hash: f9f3cf444be81006218fdda188775e6515f7b3bb5352a2a6ed45106318dd54bf + +name: licensor +version: 0.3.0 +synopsis: A license compatibility helper +description: A license compatibility helper. +category: Distribution +stability: Experimental +homepage: https://jpvillaisaza.co/licensor +bug-reports: https://github.com/jpvillaisaza/licensor/issues +author: Juan Pedro Villa Isaza +maintainer: Juan Pedro Villa Isaza +copyright: 2016 Juan Pedro Villa Isaza +license: MIT +license-file: LICENSE.md +build-type: Simple +extra-source-files: + CHANGELOG.md + README.md + +source-repository head + type: git + location: https://github.com/jpvillaisaza/licensor + +library + exposed-modules: + Licensor + other-modules: + Paths_licensor + hs-source-dirs: + src + ghc-options: -Wall + build-depends: + Cabal >=1.22 && <2.1 + , base >=4.8 && <4.11 + , containers + , directory + , process + default-language: Haskell2010 + +executable licensor + main-is: Main.hs + other-modules: + Paths_licensor + ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N + build-depends: + Cabal >=1.22 && <2.1 + , base >=4.8 && <4.11 + , cmdargs >=0.10 && <0.11 + , containers + , directory + , licensor + default-language: Haskell2010