profold/package.yaml
2020-03-01 13:29:21 +00:00

36 lines
735 B
YAML

name: profold
version: 1.0.0.0
license: MIT
author: "Garmelon <joscha@plugh.de>"
copyright: "2020 Garmelon"
synopsis: A TUI viewer for GHC .prof files
description: Please see the README on GitHub at <https://github.com/Garmelon/profold#readme>
github: "Garmelon/profold"
extra-source-files:
- README.md
- CHANGELOG.md
dependencies:
- base >= 4.7 && < 5
- brick
- megaparsec
- optparse-applicative
- text
- vector
- vty
library:
source-dirs: src
executables:
profold:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- profold