This repository has been archived by the owner on Jan 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
idris-vimscript.cabal
62 lines (54 loc) · 1.75 KB
/
idris-vimscript.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
Name: idris-vimscript
Version: 0.0.1.0
License: BSD3
License-file: LICENSE
Author: Oskar Wickström
Maintainer: Oskar Wickström <[email protected]>
Build-Type: Simple
Cabal-Version: >= 1.8
Library
hs-source-dirs: codegen/src
build-depends: idris >= 1 && < 1.1
, base
, containers
, directory
, filepath
, hashable
, mainland-pretty
, mtl
, unordered-containers
, text
, transformers
, uniplate
exposed-modules: IRTS.CodegenVim
Vimscript.AST
Vimscript.Render
Vimscript.Optimise
Vimscript.Optimise.DCE
Vimscript.Optimise.TCO
Vimscript.Optimise.Annotate
Vimscript.Optimise.Renamer
IRTS.CodegenVim.Internal.ZEncoding
ghc-options: -Wall
Executable idris-codegen-vim
main-is: Main.hs
hs-source-dirs: codegen/exe
build-depends: idris >= 1 && < 1.1
, base
, containers
, directory
, filepath
, idris-vimscript
ghc-options: -threaded -Wall
Test-Suite idris-vimscript-tests
type: exitcode-stdio-1.0
hs-source-dirs: codegen/test
main-is: Main.hs
other-modules: Vimscript.Optimise.DCETest
build-depends: base >= 4 && < 5
, idris >= 1 && < 1.1
, idris-vimscript
, tasty
, tasty-hunit
, tasty-hspec
, tasty-discover