use hpack
This commit is contained in:
parent
9acab9344d
commit
75af92ca7c
4 changed files with 39 additions and 25 deletions
36
package.yaml
Normal file
36
package.yaml
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
name: numbersquare
|
||||
version: "0.1.0"
|
||||
category: Games
|
||||
synopsis: "a game where you number square"
|
||||
description: "a game where you number square"
|
||||
license: BSD3
|
||||
author: skulk
|
||||
|
||||
ghc-options: "-Wall"
|
||||
|
||||
dependencies:
|
||||
- "base == 4.*"
|
||||
- random
|
||||
- array
|
||||
- text
|
||||
|
||||
library:
|
||||
source-dirs:
|
||||
- src
|
||||
|
||||
executable:
|
||||
source-dirs:
|
||||
- app
|
||||
main: Main.hs
|
||||
|
||||
tests:
|
||||
spec:
|
||||
main: "Spec.hs"
|
||||
ghc-options: "-threaded -O0"
|
||||
source-dirs:
|
||||
- src
|
||||
- test
|
||||
|
||||
dependencies:
|
||||
- hspec >= 2.1.8
|
||||
- QuickCheck
|
||||
Loading…
Add table
Add a link
Reference in a new issue