-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnvim-hs-contrib.cabal
59 lines (51 loc) · 1.81 KB
/
nvim-hs-contrib.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
name: nvim-hs-contrib
version: 2.0.0.2
synopsis: Haskell plugin backend for neovim
description:
Library for nvim-hs.
homepage: https://github.com/neovimhaskell/nvim-hs-contrib
license: Apache-2.0
license-file: LICENSE
author: Sebastian Witte
maintainer: [email protected]
copyright: Copyright (C) Sebastian Witte
category: Editor
build-type: Simple
cabal-version: >=1.10
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/neovimhaskell/nvim-hs-contrib
library
exposed-modules: Neovim.BuildTool
, Neovim.User.Choice
, Neovim.User.Input
-- other-extensions:
build-depends: base >=4.6 && < 5
, nvim-hs >= 2.0 && <3
, prettyprinter
, prettyprinter-ansi-terminal
, bytestring
, data-default
, directory
, filepath
, messagepack
, mtl >= 2.2.1 && < 2.4
, text
, time
, utf8-string
, yaml
hs-source-dirs: library
default-language: Haskell2010
ghc-options: -Wall
test-suite hspec
type: exitcode-stdio-1.0
hs-source-dirs: test-suite
main-is: Spec.hs
default-language: Haskell2010
build-depends: base >= 4.6 && < 5
, nvim-hs
, hspec ==2.*
, hspec-discover
, QuickCheck >=2.6
ghc-options: -threaded -rtsopts -with-rtsopts=-N