forked from haskell/haskell-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhls-stan-plugin.cabal
84 lines (78 loc) · 1.9 KB
/
hls-stan-plugin.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
cabal-version: 2.4
name: hls-stan-plugin
version: 2.5.0.0
synopsis: Stan integration plugin with Haskell Language Server
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
license: Apache-2.0
license-file: LICENSE
author: The Haskell IDE Team
maintainer: [email protected]
copyright: The Haskell IDE Team
category: Development
build-type: Simple
extra-source-files:
LICENSE
test/testdata/*.hs
source-repository head
type: git
location: https://github.com/haskell/haskell-language-server.git
flag pedantic
description: Enable -Werror
default: False
manual: True
library
if (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.10.0))
buildable: True
else
buildable: False
exposed-modules: Ide.Plugin.Stan
hs-source-dirs: src
build-depends:
base
, containers
, data-default
, deepseq
, hashable
, hie-compat
, hls-plugin-api
, ghc
, ghcide
, lsp-types
, text
, transformers
, unordered-containers
, stan >= 0.1.1.0
default-language: Haskell2010
default-extensions:
LambdaCase
NamedFieldPuns
DeriveGeneric
TypeFamilies
StandaloneDeriving
DuplicateRecordFields
OverloadedStrings
test-suite test
if (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.10.0))
buildable: True
else
buildable: False
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
, base
, containers
, filepath
, hls-stan-plugin
, hls-plugin-api
, hls-test-utils == 2.5.0.0
, lens
, lsp-types
, text
default-extensions:
NamedFieldPuns
OverloadedStrings