diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2018-12-18 13:51:16 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2018-12-18 13:51:16 +0100 |
commit | 46ae60eaca841b554ba20c6a2b7a15b43c12b4df (patch) | |
tree | 0bb06127a0e08e75f8be755f5a5dfb1702b627b6 /interactive-edit-lens/package.yaml | |
parent | b0b18979d5ccd109d5a56937396acdeb85c857aa (diff) | |
download | incremental-dfsts-46ae60eaca841b554ba20c6a2b7a15b43c12b4df.tar incremental-dfsts-46ae60eaca841b554ba20c6a2b7a15b43c12b4df.tar.gz incremental-dfsts-46ae60eaca841b554ba20c6a2b7a15b43c12b4df.tar.bz2 incremental-dfsts-46ae60eaca841b554ba20c6a2b7a15b43c12b4df.tar.xz incremental-dfsts-46ae60eaca841b554ba20c6a2b7a15b43c12b4df.zip |
Much ado about nothing
Diffstat (limited to 'interactive-edit-lens/package.yaml')
-rw-r--r-- | interactive-edit-lens/package.yaml | 53 |
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 @@ | |||
1 | name: interactive-edit-lens | ||
2 | version: 0.0.0.0 | ||
3 | license: BSD3 | ||
4 | license-file: LICENSE | ||
5 | author: Gregor Kleen <aethoago@141.li> | ||
6 | build-type: Simple | ||
7 | extra-source-files: | ||
8 | - ChangeLog.md | ||
9 | git: https://git.yggdrasil.li/gkleen/pub/bachelor-thesis | ||
10 | |||
11 | default-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 | |||
25 | other-extensions: | ||
26 | - TemplateHaskell | ||
27 | |||
28 | dependencies: | ||
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 | |||
43 | library: | ||
44 | source-dirs: src | ||
45 | exposed-modules: | ||
46 | - Interact | ||
47 | - Interact.Types | ||
48 | |||
49 | executables: | ||
50 | interact: | ||
51 | ghc-options: [ -threaded ] | ||
52 | source-dirs: src | ||
53 | main: Main.hs | ||