-
-
Notifications
You must be signed in to change notification settings - Fork 368
/
haskell-language-server.cabal
2310 lines (2081 loc) · 57.1 KB
/
haskell-language-server.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
cabal-version: 3.4
category: Development
name: haskell-language-server
version: 2.9.0.1
synopsis: LSP server for GHC
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
homepage: https://github.com/haskell/haskell-language-server#readme
bug-reports: https://github.com/haskell/haskell-language-server/issues
author: The Haskell IDE Team
maintainer: [email protected]
copyright: The Haskell IDE Team
license: Apache-2.0
license-file: LICENSE
build-type: Simple
tested-with: GHC ==9.10.1 || ==9.8.2 || ==9.6.5 || ==9.4.8
extra-source-files:
README.md
ChangeLog.md
test/testdata/**/*.project
test/testdata/**/*.cabal
test/testdata/**/*.yaml
test/testdata/**/*.hs
test/testdata/**/*.json
-- These globs should only match test/testdata
plugins/**/*.project
plugins/**/*.expected
plugins/**/*.cabal
plugins/**/*.yaml
plugins/**/*.txt
plugins/**/*.hs
bindist/wrapper.in
source-repository head
type: git
location: https://github.com/haskell/haskell-language-server
common defaults
default-language: GHC2021
-- Should have been in GHC2021, an oversight
default-extensions: ExplicitNamespaces
common test-defaults
ghc-options: -threaded -rtsopts -with-rtsopts=-N
if impl(ghc >= 9.8)
-- We allow using partial functions in tests
ghc-options: -Wno-x-partial
-- Default warnings in HLS
common warnings
ghc-options: -Wall
-Wredundant-constraints
-Wunused-packages
-Wno-name-shadowing
-Wno-unticked-promoted-constructors
flag pedantic
description: Enable -Werror
default: False
manual: True
-- Allow compiling in pedantic mode
common pedantic
if flag(pedantic)
ghc-options:
-Werror
-- Note [unused-packages]
-- ~~~~~~~~~~~~~~~~~~~~~~
-- Some packages need CPP conditioned on MIN_VERSION_ghc(x,y,z).
-- MIN_VERSION_<pkg> is CPP macro that cabal defines only when <pkg> is declared as a dependency.
-- But -Wunused-packages still reports it as unused dependency if it's not imported.
-- For packages with such "unused" dependencies we demote -Wunused-packages error
-- (enabled by --flag=pedantic) to warning via -Wwarn=unused-packages.
-Wwarn=unused-packages
-- Plugin flags are designed for 'cabal install haskell-language-server':
-- - Bulk flags should be default:False
-- - Individual flags should be default:True
-- The intent of this flag is being able to keep the ghc condition for hackage
-- but skip it via flags in cabal.project as plugins for new ghcs usually
-- are buildable using cabal.project tweaks
flag ignore-plugins-ghc-bounds
description: Force the inclusion of plugins even if they are not buildable by default with a specific ghc version
default: False
manual: True
flag dynamic
description: Build with the dyn rts
default: True
manual: True
----------------------------
----------------------------
-- PLUGINS
----------------------------
----------------------------
-----------------------------
-- cabal-fmt plugin
-----------------------------
flag cabalfmt
description: Enable cabal-fmt plugin
default: True
manual: True
common cabalfmt
if flag(cabalfmt)
build-depends: haskell-language-server:hls-cabal-fmt-plugin
cpp-options: -Dhls_cabalfmt
flag isolateCabalfmtTests
description: Should tests search for 'cabal-fmt' on the $PATH or shall we install it via build-tool-depends?
-- By default, search on the PATH
default: False
manual: True
library hls-cabal-fmt-plugin
import: defaults, pedantic, warnings
if !flag(cabalfmt)
buildable: False
exposed-modules: Ide.Plugin.CabalFmt
hs-source-dirs: plugins/hls-cabal-fmt-plugin/src
build-depends:
, base >=4.12 && <5
, directory
, filepath
, ghcide == 2.9.0.1
, hls-plugin-api == 2.9.0.1
, lens
, lsp-types
, mtl
, process-extras
, text
-- The `hls-cabal-plugin` is needed for tests, as we need to install notification handlers
test-suite hls-cabal-fmt-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if !flag(cabalfmt)
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-cabal-fmt-plugin/test
main-is: Main.hs
build-depends:
, base
, directory
, filepath
, haskell-language-server:hls-cabal-plugin
, haskell-language-server:hls-cabal-fmt-plugin
, hls-plugin-api == 2.9.0.1
, hls-test-utils == 2.9.0.1
if flag(isolateCabalfmtTests)
build-tool-depends: cabal-fmt:cabal-fmt ^>=0.1.12
cpp-options: -Dhls_isolate_cabalfmt_tests
-----------------------------
-- cabal-gild plugin
-----------------------------
flag cabalgild
description: Enable cabal-gild plugin
default: True
manual: True
common cabalgild
if flag(cabalgild)
build-depends: haskell-language-server:hls-cabal-gild-plugin
cpp-options: -Dhls_cabalgild
flag isolateCabalGildTests
description: Should tests search for 'cabal-gild' on the $PATH or shall we install it via build-tool-depends?
-- By default, search on the PATH
default: False
manual: True
library hls-cabal-gild-plugin
import: defaults, pedantic, warnings
if !flag(cabalgild)
buildable: False
exposed-modules: Ide.Plugin.CabalGild
hs-source-dirs: plugins/hls-cabal-gild-plugin/src
build-depends:
, base >=4.12 && <5
, directory
, filepath
, ghcide == 2.9.0.1
, hls-plugin-api == 2.9.0.1
, lsp-types
, text
, mtl
, process-extras
-- The `hls-cabal-plugin` is needed for tests, as we need to install notification handlers
test-suite hls-cabal-gild-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if !flag(cabalgild)
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-cabal-gild-plugin/test
main-is: Main.hs
build-depends:
, base
, directory
, filepath
, haskell-language-server:hls-cabal-plugin
, haskell-language-server:hls-cabal-gild-plugin
, hls-plugin-api == 2.9.0.1
, hls-test-utils == 2.9.0.1
if flag(isolateCabalGildTests)
-- https://github.com/tfausak/cabal-gild/issues/89
build-tool-depends: cabal-gild:cabal-gild >= 1.3 && < 1.3.2
cpp-options: -Dhls_isolate_cabalgild_tests
-----------------------------
-- cabal plugin
-----------------------------
flag cabal
description: Enable cabal plugin
default: True
manual: True
common cabal
if flag(cabal)
build-depends: haskell-language-server:hls-cabal-plugin
cpp-options: -Dhls_cabal
library hls-cabal-plugin
import: defaults, pedantic, warnings
if !flag(cabal)
buildable: False
exposed-modules:
Ide.Plugin.Cabal
Ide.Plugin.Cabal.Diagnostics
Ide.Plugin.Cabal.Completion.CabalFields
Ide.Plugin.Cabal.Completion.Completer.FilePath
Ide.Plugin.Cabal.Completion.Completer.Module
Ide.Plugin.Cabal.Completion.Completer.Paths
Ide.Plugin.Cabal.Completion.Completer.Simple
Ide.Plugin.Cabal.Completion.Completer.Snippet
Ide.Plugin.Cabal.Completion.Completer.Types
Ide.Plugin.Cabal.Completion.Completions
Ide.Plugin.Cabal.Completion.Data
Ide.Plugin.Cabal.Completion.Types
Ide.Plugin.Cabal.Definition
Ide.Plugin.Cabal.FieldSuggest
Ide.Plugin.Cabal.LicenseSuggest
Ide.Plugin.Cabal.CabalAdd
Ide.Plugin.Cabal.Orphans
Ide.Plugin.Cabal.Outline
Ide.Plugin.Cabal.Parse
build-depends:
, base >=4.12 && <5
, bytestring
, Cabal-syntax >= 3.7
, containers
, deepseq
, directory
, filepath
, extra >=1.7.4
, ghcide == 2.9.0.1
, hashable
, hls-plugin-api == 2.9.0.1
, hls-graph == 2.9.0.1
, lens
, lsp ^>=2.7
, lsp-types ^>=2.3
, regex-tdfa ^>=1.3.1
, text
, text-rope
, transformers
, unordered-containers >=0.2.10.0
, containers
, cabal-add
, process
, aeson
, Cabal
, pretty
hs-source-dirs: plugins/hls-cabal-plugin/src
test-suite hls-cabal-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if !flag(cabal)
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-cabal-plugin/test
main-is: Main.hs
other-modules:
CabalAdd
Completer
Context
Definition
Outline
Utils
build-depends:
, base
, bytestring
, Cabal-syntax >= 3.7
, extra
, filepath
, ghcide
, haskell-language-server:hls-cabal-plugin
, hls-test-utils == 2.9.0.1
, lens
, lsp-types
, text
, hls-plugin-api
-----------------------------
-- class plugin
-----------------------------
flag class
description: Enable class plugin
default: True
manual: True
common class
if flag(class)
build-depends: haskell-language-server:hls-class-plugin
cpp-options: -Dhls_class
library hls-class-plugin
import: defaults, pedantic, warnings
if !flag(class)
buildable: False
exposed-modules: Ide.Plugin.Class
other-modules: Ide.Plugin.Class.CodeAction
, Ide.Plugin.Class.CodeLens
, Ide.Plugin.Class.ExactPrint
, Ide.Plugin.Class.Types
, Ide.Plugin.Class.Utils
hs-source-dirs: plugins/hls-class-plugin/src
build-depends:
, aeson
, base >=4.12 && <5
, containers
, deepseq
, extra
, ghc
, ghc-exactprint >= 1.5 && < 1.10.0.0
, ghcide == 2.9.0.1
, hls-graph
, hls-plugin-api == 2.9.0.1
, lens
, lsp
, mtl
, text
, transformers
default-extensions:
DataKinds
OverloadedStrings
test-suite hls-class-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if !flag(class)
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-class-plugin/test
main-is: Main.hs
build-depends:
, base
, filepath
, haskell-language-server:hls-class-plugin
, hls-test-utils == 2.9.0.1
, lens
, lsp-types
, text
-----------------------------
-- call-hierarchy plugin
-----------------------------
flag callHierarchy
description: Enable call hierarchy plugin
default: True
manual: True
common callHierarchy
if flag(callHierarchy)
build-depends: haskell-language-server:hls-call-hierarchy-plugin
cpp-options: -Dhls_callHierarchy
library hls-call-hierarchy-plugin
import: defaults, pedantic, warnings
if !flag(callHierarchy)
buildable: False
exposed-modules: Ide.Plugin.CallHierarchy
other-modules:
Ide.Plugin.CallHierarchy.Internal
Ide.Plugin.CallHierarchy.Query
Ide.Plugin.CallHierarchy.Types
hs-source-dirs: plugins/hls-call-hierarchy-plugin/src
build-depends:
, aeson
, base >=4.12 && <5
, containers
, extra
, ghcide == 2.9.0.1
, hiedb ^>= 0.6.0.0
, hls-plugin-api == 2.9.0.1
, lens
, lsp >=2.7
, sqlite-simple
, text
default-extensions: DataKinds
test-suite hls-call-hierarchy-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if !flag(callHierarchy)
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-call-hierarchy-plugin/test
main-is: Main.hs
build-depends:
, aeson
, base
, containers
, extra
, filepath
, haskell-language-server:hls-call-hierarchy-plugin
, hls-test-utils == 2.9.0.1
, lens
, lsp
, lsp-test
, text
-----------------------------
-- eval plugin
-----------------------------
flag eval
description: Enable eval plugin
default: True
manual: True
common eval
if flag(eval)
build-depends: haskell-language-server:hls-eval-plugin
cpp-options: -Dhls_eval
library hls-eval-plugin
import: defaults, pedantic, warnings
if !flag(eval)
buildable: False
exposed-modules:
Ide.Plugin.Eval
Ide.Plugin.Eval.Types
hs-source-dirs: plugins/hls-eval-plugin/src
other-modules:
Ide.Plugin.Eval.Code
Ide.Plugin.Eval.CodeLens
Ide.Plugin.Eval.Config
Ide.Plugin.Eval.GHC
Ide.Plugin.Eval.Parse.Comments
Ide.Plugin.Eval.Parse.Option
Ide.Plugin.Eval.Rules
Ide.Plugin.Eval.Util
build-depends:
, aeson
, base >=4.12 && <5
, bytestring
, containers
, deepseq
, Diff ^>=0.5
, dlist
, extra
, filepath
, ghc
, ghc-boot-th
, ghcide == 2.9.0.1
, hls-graph
, hls-plugin-api == 2.9.0.1
, lens
, lsp
, lsp-types
, megaparsec >=9.0
, mtl
, parser-combinators >=1.2
, text
, text-rope
, transformers
, unliftio
, unordered-containers
default-extensions:
DataKinds
test-suite hls-eval-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if !flag(eval)
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-eval-plugin/test
main-is: Main.hs
ghc-options: -fno-ignore-asserts
build-depends:
, aeson
, base
, containers
, extra
, filepath
, haskell-language-server:hls-eval-plugin
, hls-plugin-api
, hls-test-utils == 2.9.0.1
, lens
, lsp-types
, text
-----------------------------
-- import lens plugin
-----------------------------
common importLens
if flag(importLens)
build-depends: haskell-language-server:hls-explicit-imports-plugin
cpp-options: -Dhls_importLens
flag importLens
description: Enable importLens plugin
default: True
manual: True
library hls-explicit-imports-plugin
import: defaults, pedantic, warnings
if !flag(importlens)
buildable: False
exposed-modules: Ide.Plugin.ExplicitImports
hs-source-dirs: plugins/hls-explicit-imports-plugin/src
build-depends:
, aeson
, base >=4.12 && <5
, containers
, deepseq
, ghc
, ghcide == 2.9.0.1
, hls-graph
, hls-plugin-api == 2.9.0.1
, lens
, lsp
, mtl
, text
, transformers
default-extensions:
DataKinds
test-suite hls-explicit-imports-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if !flag(importlens)
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-explicit-imports-plugin/test
main-is: Main.hs
build-depends:
, base
, extra
, filepath
, haskell-language-server:hls-explicit-imports-plugin
, hls-test-utils == 2.9.0.1
, lens
, lsp-types
, text
-----------------------------
-- rename plugin
-----------------------------
flag rename
description: Enable rename plugin
default: True
manual: True
common rename
if flag(rename)
build-depends: haskell-language-server:hls-rename-plugin
cpp-options: -Dhls_rename
library hls-rename-plugin
import: defaults, pedantic, warnings
if !flag(rename)
buildable: False
exposed-modules: Ide.Plugin.Rename
hs-source-dirs: plugins/hls-rename-plugin/src
build-depends:
, base >=4.12 && <5
, containers
, ghcide == 2.9.0.1
, hashable
, hiedb ^>= 0.6.0.0
, hie-compat
, hls-plugin-api == 2.9.0.1
, haskell-language-server:hls-refactor-plugin
, lens
, lsp-types
, mtl
, mod
, syb
, text
, transformers
, unordered-containers
test-suite hls-rename-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if !flag(rename)
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-rename-plugin/test
main-is: Main.hs
build-depends:
, aeson
, base
, containers
, filepath
, hls-plugin-api
, haskell-language-server:hls-rename-plugin
, hls-test-utils == 2.9.0.1
, lens
, lsp-types
, text
-----------------------------
-- retrie plugin
-----------------------------
flag retrie
description: Enable retrie plugin
default: True
manual: True
common retrie
if flag(retrie) && impl(ghc < 9.10)
build-depends: haskell-language-server:hls-retrie-plugin
cpp-options: -Dhls_retrie
library hls-retrie-plugin
import: defaults, pedantic, warnings
if !(flag(retrie) && impl(ghc < 9.10))
buildable: False
exposed-modules: Ide.Plugin.Retrie
hs-source-dirs: plugins/hls-retrie-plugin/src
build-depends:
, aeson
, base >=4.12 && <5
, bytestring
, containers
, extra
, ghc
, ghcide == 2.9.0.1
, hashable
, hls-plugin-api == 2.9.0.1
, haskell-language-server:hls-refactor-plugin
, lens
, lsp
, lsp-types
, mtl
, retrie >=0.1.1.0
, safe-exceptions
, stm
, text
, text-rope
, transformers
, unordered-containers
default-extensions:
DataKinds
test-suite hls-retrie-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if !(flag(retrie) && impl(ghc < 9.10))
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-retrie-plugin/test
main-is: Main.hs
build-depends:
, base
, containers
, filepath
, hls-plugin-api
, haskell-language-server:{hls-refactor-plugin, hls-retrie-plugin}
, hls-test-utils == 2.9.0.1
, text
-----------------------------
-- hlint plugin
-----------------------------
flag ghc-lib
description:
Use ghc-lib-parser rather than the ghc library (requires hlint and
ghc-lib-parser-ex to also be built with it)
default: True
manual: True
flag hlint
description: Enable hlint plugin
default: True
manual: True
common hlint
if flag(hlint) && impl(ghc < 9.10)
build-depends: haskell-language-server:hls-hlint-plugin
cpp-options: -Dhls_hlint
library hls-hlint-plugin
import: defaults, pedantic, warnings
-- https://github.com/ndmitchell/hlint/pull/1594
if !(flag(hlint) && impl(ghc < 9.10))
buildable: False
exposed-modules: Ide.Plugin.Hlint
hs-source-dirs: plugins/hls-hlint-plugin/src
build-depends:
, aeson
, base >=4.12 && <5
, bytestring
, containers
, deepseq
, filepath
, ghcide == 2.9.0.1
, hashable
, hlint >= 3.5 && < 3.9
, hls-plugin-api == 2.9.0.1
, lens
, mtl
, refact
, regex-tdfa
, stm
, temporary
, text
, text-rope
, transformers
, unordered-containers
, ghc-lib-parser-ex
, apply-refact
--
, lsp-types
if flag(ghc-lib)
cpp-options: -DGHC_LIB
build-depends:
ghc-lib-parser
else
build-depends:
ghc
, ghc-boot
default-extensions:
DataKinds
test-suite hls-hlint-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if !(flag(hlint) && impl(ghc < 9.10))
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-hlint-plugin/test
main-is: Main.hs
build-depends:
aeson
, base
, containers
, filepath
, haskell-language-server:hls-hlint-plugin
, hls-plugin-api
, hls-test-utils == 2.9.0.1
, lens
, lsp-types
, text
-----------------------------
-- stan plugin
-----------------------------
flag stan
description: Enable stan plugin
default: True
manual: True
common stan
if flag(stan)
build-depends: haskell-language-server:hls-stan-plugin
cpp-options: -Dhls_stan
library hls-stan-plugin
import: defaults, pedantic, warnings
if flag(stan)
buildable: True
else
buildable: False
exposed-modules: Ide.Plugin.Stan
hs-source-dirs: plugins/hls-stan-plugin/src
build-depends:
base
, deepseq
, hashable
, hie-compat
, hls-plugin-api
, ghcide
, lsp-types
, text
, unordered-containers
, stan >= 0.1.2.0
, trial
, directory
default-extensions:
LambdaCase
TypeFamilies
DuplicateRecordFields
OverloadedStrings
test-suite hls-stan-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if flag(stan)
buildable: True
else
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-stan-plugin/test
main-is: Main.hs
build-depends:
, base
, filepath
, haskell-language-server:hls-stan-plugin
, hls-plugin-api
, hls-test-utils == 2.9.0.1
, lens
, lsp-types
, text
default-extensions:
OverloadedStrings
-----------------------------
-- module name plugin
-----------------------------
flag moduleName
description: Enable moduleName plugin
default: True
manual: True
common moduleName
if flag(moduleName)
build-depends: haskell-language-server:hls-module-name-plugin
cpp-options: -Dhls_moduleName
library hls-module-name-plugin
import: defaults, pedantic, warnings
if !flag(modulename)
buildable: False
exposed-modules: Ide.Plugin.ModuleName
hs-source-dirs: plugins/hls-module-name-plugin/src
build-depends:
, aeson
, base >=4.12 && <5
, containers
, filepath
, ghcide == 2.9.0.1
, hls-plugin-api == 2.9.0.1
, lsp
, text
, text-rope
, transformers
test-suite hls-module-name-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if !flag(modulename)
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-module-name-plugin/test
main-is: Main.hs
build-depends:
, base
, filepath
, haskell-language-server:hls-module-name-plugin
, hls-test-utils == 2.9.0.1
-----------------------------
-- pragmas plugin
-----------------------------
flag pragmas
description: Enable pragmas plugin
default: True
manual: True
common pragmas
if flag(pragmas)
build-depends: haskell-language-server:hls-pragmas-plugin
cpp-options: -Dhls_pragmas
library hls-pragmas-plugin
import: defaults, pedantic, warnings
if !flag(pragmas)
buildable: False
exposed-modules: Ide.Plugin.Pragmas
hs-source-dirs: plugins/hls-pragmas-plugin/src
build-depends:
, base >=4.12 && <5
, extra
, fuzzy
, ghcide == 2.9.0.1
, hls-plugin-api == 2.9.0.1
, lens
, lsp
, text
, transformers
, containers
test-suite hls-pragmas-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if !flag(pragmas)
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-pragmas-plugin/test
main-is: Main.hs
build-depends:
, aeson
, base
, filepath
, haskell-language-server:hls-pragmas-plugin
, hls-test-utils == 2.9.0.1
, lens
, lsp-types
, text
-----------------------------
-- splice plugin
-----------------------------
flag splice
description: Enable splice plugin
default: True
manual: True
common splice
if flag(splice) && impl(ghc < 9.10)
build-depends: haskell-language-server:hls-splice-plugin
cpp-options: -Dhls_splice
library hls-splice-plugin
import: defaults, pedantic, warnings
if !(flag(splice) && impl(ghc < 9.10))
buildable: False
exposed-modules:
Ide.Plugin.Splice
Ide.Plugin.Splice.Types
hs-source-dirs: plugins/hls-splice-plugin/src
build-depends:
, aeson
, base >=4.12 && <5
, extra
, foldl
, ghc
, ghcide == 2.9.0.1
, hls-plugin-api == 2.9.0.1
, haskell-language-server:hls-refactor-plugin
, lens
, lsp
, mtl
, syb
, text
, transformers
, unliftio-core
default-extensions:
DataKinds
test-suite hls-splice-plugin-tests
import: defaults, pedantic, test-defaults, warnings
if !(flag(splice) && impl(ghc < 9.10))
buildable: False
type: exitcode-stdio-1.0
hs-source-dirs: plugins/hls-splice-plugin/test
main-is: Main.hs
build-depends:
, base
, filepath
, haskell-language-server:hls-splice-plugin
, hls-test-utils == 2.9.0.1
, text
-----------------------------
-- alternate number format plugin