name: haskell-stack
version: 0.1.0.0
github: "githubuser/haskell-stack"
license: BSD3
author: "Author name here"
maintainer: "example@example.com"
copyright: "2022 Author name here"
extra-source-files:
- README.md
- ChangeLog.md
description: Please see the README on GitHub at <https://github.com/githubuser/haskell-stack#readme>
dependencies:
- base >= 4.7 && < 5
library:
source-dirs: src
executables:
haskell-stack-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskell-stack
tests:
haskell-stack-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskell-stack