21 lines
336 B
YAML
21 lines
336 B
YAML
name: hello-world
|
|
version: 1.0.0.3
|
|
|
|
dependencies:
|
|
- base
|
|
|
|
library:
|
|
exposed-modules: HelloWorld
|
|
source-dirs: src
|
|
dependencies:
|
|
# - foo # List here the packages you
|
|
# - bar # want to use in your solution.
|
|
|
|
tests:
|
|
test:
|
|
main: Tests.hs
|
|
source-dirs: test
|
|
dependencies:
|
|
- hello-world
|
|
- hspec
|