summaryrefslogtreecommitdiff
path: root/package.yaml
blob: 0055d35a9a598f8ce7354a33f8ff396e005517cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: fiddle
version: 0.5

executables:
  fiddlec:
    main: Main.hs
    source-dirs: src

ghc-options:
  - -XBangPatterns
  - -XDataKinds
  - -XFlexibleContexts
  - -XFlexibleInstances
  - -XGADTs
  - -XKindSignatures
  - -XMultiParamTypeClasses
  - -XPolyKinds
  - -XRankNTypes
  - -XGeneralizedNewtypeDeriving
  - -XStandaloneDeriving
  - -XTupleSections
  - -XTypeFamilies
  - -XViewPatterns
  - -XLambdaCase
  - -XStrictData

dependencies:
  - base >= 4.0.0
  - parsec
  - text