Create project

This commit is contained in:
Joscha 2020-02-29 20:51:27 +00:00
commit c32d5faefc
11 changed files with 196 additions and 0 deletions

34
package.yaml Normal file
View file

@ -0,0 +1,34 @@
name: profold
version: 0.1.0.0
license: MIT
author: "Garmelon <joscha@plugh.de>"
copyright: "2020 Garmelon"
synopsis: A TUI viewer for GHC .prof files that can fold/unfold sections
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
- containers
- megaparsec
- text
- vector
library:
source-dirs: src
executables:
profold:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- profold