forked from theam/haskell-do
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
109 lines (102 loc) · 2.44 KB
/
package.yaml
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: haskell-do
version: 0.9.4
synopsis: The Haskell code editor focused on interactive development
description: Please see README.md
homepage: https://github.com/theam/haskell-do#readme
license: Apache-2.0
author: Theam
maintainer: nick@theam.io
copyright: 2017 Theam
category: Editor
extra-source-files:
- README.md
dependencies:
- base >= 4.7 && < 5
- flow == 1.0.7
- transient == 0.5.4
- transient-universe == 0.4.3
- axiom == 0.4.5
- clay
- text == 1.2.2.1
- process
- directory
- filepath
- system-fileio
ghc-options:
- -Wall
- -Werror
- -fprint-potential-instances
when:
- condition: impl(ghcjs)
then:
dependencies: ghcjs-base
source-dirs: src/ghcjs-specific
else:
source-dirs: src/ghc-specific
default-extensions:
- CPP
- OverloadedStrings
library:
source-dirs: src/common
other-modules:
- AxiomUtils
- Foreign.Highlight
- Foreign.JQuery
- Foreign.Materialize
- Foreign.CodeMirror
- HaskellDo.Compilation.State
- HaskellDo.Compilation.Types
- HaskellDo.Compilation.View
- HaskellDo.Materialize.View
- HaskellDo.CodeMirror.State
- HaskellDo.CodeMirror.Types
- HaskellDo.CodeMirror.View
- HaskellDo.State
- HaskellDo.Style.View
- HaskellDo.Toolbar.State
- HaskellDo.Toolbar.Types
- HaskellDo.Toolbar.View
- HaskellDo.Toolbar.FileSystemTree
- HaskellDo.Types
- HaskellDo.View
- Ulmus
exposed-modules:
- HaskellDo
executables:
haskell-do:
other-modules:
- AxiomUtils
- Foreign.Highlight
- Foreign.JQuery
- Foreign.Materialize
- Foreign.CodeMirror
- HaskellDo.Compilation.State
- HaskellDo.Compilation.Types
- HaskellDo.Compilation.View
- HaskellDo.Materialize.View
- HaskellDo.CodeMirror.State
- HaskellDo.CodeMirror.Types
- HaskellDo.CodeMirror.View
- HaskellDo.State
- HaskellDo.Style.View
- HaskellDo.Toolbar.State
- HaskellDo.Toolbar.Types
- HaskellDo.Toolbar.View
- HaskellDo.Toolbar.FileSystemTree
- HaskellDo.Types
- HaskellDo.View
- Ulmus
- HaskellDo
source-dirs: src/common
main: Main.hs
tests:
spec:
main: Spec.hs
source-dirs:
- test
- src/common
dependencies:
- hspec == 2.*
- QuickCheck
- quickcheck-io
- mockery