-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneohaskell-playground.cabal
63 lines (52 loc) · 1.16 KB
/
neohaskell-playground.cabal
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
cabal-version: 3.4
name: neohaskell-playground
version: 0.1.0
synopsis: A playground to try NeoHaskell
homepage: https://www.neohaskell.org
license: Apache-2.0
license-file: LICENSE
author: Nikita Tchayka
maintainer: neohaskell@nickseagull.dev
build-type: Simple
common neohaskell-defaults
ghc-options:
-Wall
-Werror
default-extensions:
BlockArguments
DataKinds
NoImplicitPrelude
TemplateHaskell
DeriveDataTypeable
QuasiQuotes
QualifiedDo
ImportQualifiedPost
OverloadedStrings
OverloadedLists
OverloadedLabels
OverloadedRecordDot
DuplicateRecordFields
PackageImports
NamedFieldPuns
StrictData
TypeFamilies
build-depends:
nhcore
default-language:
GHC2021
library
import:
neohaskell-defaults
exposed-modules:
Playground
hs-source-dirs:
src
executable neohaskell-playground
import:
neohaskell-defaults
main-is:
Main.hs
build-depends:
neohaskell-playground
hs-source-dirs:
app