summaryrefslogtreecommitdiff
path: root/interactive-edit-lens/package.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'interactive-edit-lens/package.yaml')
-rw-r--r--interactive-edit-lens/package.yaml53
1 files changed, 53 insertions, 0 deletions
diff --git a/interactive-edit-lens/package.yaml b/interactive-edit-lens/package.yaml
new file mode 100644
index 0000000..9bc3ead
--- /dev/null
+++ b/interactive-edit-lens/package.yaml
@@ -0,0 +1,53 @@
1name: interactive-edit-lens
2version: 0.0.0.0
3license: BSD3
4license-file: LICENSE
5author: Gregor Kleen <aethoago@141.li>
6build-type: Simple
7extra-source-files:
8 - ChangeLog.md
9git: https://git.yggdrasil.li/gkleen/pub/bachelor-thesis
10
11default-extensions:
12 - RecordWildCards
13 - MultiParamTypeClasses
14 - FlexibleInstances
15 - FlexibleContexts
16 - FunctionalDependencies
17 - TupleSections
18 - TypeApplications
19 - ViewPatterns
20 - PatternSynonyms
21 - TypeFamilies
22 - TypeOperators
23 - MultiWayIf
24
25other-extensions:
26 - TemplateHaskell
27
28dependencies:
29 - base
30 - lens
31 - containers
32 - edit-lens
33 - brick
34 - vty
35 - text
36 - text-zipper
37 - dyre
38 - mtl
39 - transformers
40
41# ghc-options: [ -O2 ]
42
43library:
44 source-dirs: src
45 exposed-modules:
46 - Interact
47 - Interact.Types
48
49executables:
50 interact:
51 ghc-options: [ -threaded ]
52 source-dirs: src
53 main: Main.hs