2020-04-24 03:48:49 +03:00
|
|
|
name: implicit-hie
|
|
|
|
version: 0.1.0.0
|
|
|
|
github: "Avi-D-coder/implicit-hie"
|
|
|
|
license: BSD3
|
|
|
|
author: "Avi Dessauer"
|
|
|
|
maintainer: "avi.the.coder@gmail.com"
|
|
|
|
copyright: "2020"
|
|
|
|
|
|
|
|
extra-source-files:
|
|
|
|
- README.md
|
|
|
|
- ChangeLog.md
|
|
|
|
|
|
|
|
# Metadata used when publishing your package
|
|
|
|
# synopsis: Short description of your package
|
|
|
|
# category: Web
|
|
|
|
|
|
|
|
# To avoid duplicated efforts in documentation and dealing with the
|
|
|
|
# complications of embedding Haddock markup inside cabal files, it is
|
|
|
|
# common to point users to the README.md file.
|
2020-05-01 03:59:13 +03:00
|
|
|
description: "Auto generate a stack or cabal multi component hie.yaml file"
|
2020-04-24 03:48:49 +03:00
|
|
|
|
|
|
|
dependencies:
|
|
|
|
- base >= 4.7 && < 5
|
2020-04-25 07:28:20 +03:00
|
|
|
- text
|
2020-05-12 06:04:09 +03:00
|
|
|
- transformers
|
2020-04-24 03:48:49 +03:00
|
|
|
- attoparsec
|
2020-05-01 02:35:00 +03:00
|
|
|
- yaml
|
2020-05-09 09:10:48 +03:00
|
|
|
- directory
|
2020-05-12 06:04:09 +03:00
|
|
|
- filepattern
|
2020-05-09 09:10:48 +03:00
|
|
|
- filepath
|
2020-04-24 03:48:49 +03:00
|
|
|
|
2020-04-25 07:28:20 +03:00
|
|
|
ghc-options:
|
2020-05-09 08:26:07 +03:00
|
|
|
# - -O2
|
|
|
|
# - -flate-specialise
|
|
|
|
# - -fexpose-all-unfoldings
|
|
|
|
# - -fspecialize-aggressively
|
2020-04-25 07:28:20 +03:00
|
|
|
- -Wall
|
|
|
|
- -Wincomplete-record-updates
|
|
|
|
- -Wincomplete-uni-patterns
|
|
|
|
- -fno-warn-unused-imports
|
|
|
|
- -fno-warn-unused-binds
|
|
|
|
- -fno-warn-name-shadowing
|
|
|
|
- -fwarn-redundant-constraints
|
|
|
|
|
2020-04-24 03:48:49 +03:00
|
|
|
library:
|
|
|
|
source-dirs: src
|
|
|
|
|
|
|
|
executables:
|
2020-05-01 03:59:13 +03:00
|
|
|
gen-hie:
|
2020-04-24 03:48:49 +03:00
|
|
|
main: Main.hs
|
|
|
|
source-dirs: app
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
|
|
|
dependencies:
|
|
|
|
- implicit-hie
|
|
|
|
|
|
|
|
tests:
|
|
|
|
implicit-hie-test:
|
|
|
|
main: Spec.hs
|
|
|
|
source-dirs: test
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
|
|
|
dependencies:
|
|
|
|
- implicit-hie
|
2020-04-25 07:28:20 +03:00
|
|
|
- hspec
|
|
|
|
- hspec-attoparsec
|