-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvmod-loader.cabal
60 lines (53 loc) · 1.37 KB
/
vmod-loader.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
cabal-version: 2.4
name: vmod-loader
version: 1.5.0
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
description:
Vmodloader is a module bundler to bundle neovim config files written in lua
-- A URL where users can report bugs.
bug-reports:
https://github.com/v4zha/vmod-loader
-- The license under which the package is released.
-- license:
author: v4zha
maintainer: arvin_j4848@protonmail.com
-- A copyright notice.
-- copyright:
-- category:
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
Vloader
Vbanner
build-depends:
base >= 4.12.0.0 ,
directory >= 1.3.3.0,
filepath >= 1.4.2.1,
yaml >= 0.11.8.0,
text>=1.2.3.1,
optparse-applicative>=0.17.0.0,
termcolor>=0.2.0.0
executable vmod
default-language: Haskell2010
hs-source-dirs: app
main-is: Main.hs
build-depends:
base >= 4.12.0.0 ,
directory >= 1.3.3.0,
optparse-applicative>=0.17.0.0,
termcolor>=0.2.0.0,
vmod-loader>=1.5.0
Test-Suite vmod-test
type: exitcode-stdio-1.0
ghc-options: -Wall
hs-source-dirs: test
main-is: Main.hs
build-depends:
base >= 4.12.0.0,
HUnit >=1.6.2.0,
test-framework >= 0.8.2,
test-framework-hunit >=0.3.0,
vmod-loader >=1.5.0