-
Notifications
You must be signed in to change notification settings - Fork 843
/
stack.cabal
842 lines (827 loc) · 21.9 KB
/
stack.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
cabal-version: 2.0
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack
name: stack
version: 3.2.0
synopsis: The Haskell Tool Stack
description: Please see the documentation at <https://docs.haskellstack.org>
for usage information.
.
If building a 'stack' executable for distribution, please download the
source code from <https://github.com/commercialhaskell/stack/releases>
and build it using Stack itself in order to ensure identical behaviour
to official binaries. This package on Hackage is provided for convenience
and bootstrapping purposes.
.
Note that the API for the library is not currently stable, and may
change significantly, even between minor releases. It is
currently only intended for use by the executable.
category: Development
homepage: http://haskellstack.org
bug-reports: https://github.com/commercialhaskell/stack/issues
author: Commercial Haskell SIG
maintainer: [email protected]
license: BSD3
license-file: LICENSE
build-type: Custom
extra-source-files:
CONTRIBUTING.md
ChangeLog.md
README.md
stack.yaml
doc/build_overview.md
doc/ChangeLog.md
doc/commands/bench_command.md
doc/commands/build_command.md
doc/commands/clean_command.md
doc/commands/config_command.md
doc/commands/docker_command.md
doc/commands/dot_command.md
doc/commands/eval_command.md
doc/commands/exec_command.md
doc/commands/ghc_command.md
doc/commands/ghci_command.md
doc/commands/haddock_command.md
doc/commands/hoogle_command.md
doc/commands/hpc_command.md
doc/commands/ide_command.md
doc/commands/index.md
doc/commands/init_command.md
doc/commands/install_command.md
doc/commands/list_command.md
doc/commands/ls_command.md
doc/commands/new_command.md
doc/commands/path_command.md
doc/commands/purge_command.md
doc/commands/query_command.md
doc/commands/repl_command.md
doc/commands/run_command.md
doc/commands/runghc_command.md
doc/commands/runhaskell_command.md
doc/commands/script_command.md
doc/commands/sdist_command.md
doc/commands/setup_command.md
doc/commands/templates_command.md
doc/commands/test_command.md
doc/commands/uninstall_command.md
doc/commands/unpack_command.md
doc/commands/update_command.md
doc/commands/upgrade_command.md
doc/commands/upload_command.md
doc/community/index.md
doc/configure/customisation_scripts.md
doc/configure/environment_variables.md
doc/configure/global_flags.md
doc/configure/index.md
doc/configure/yaml/index.md
doc/configure/yaml/non-project.md
doc/configure/yaml/project.md
doc/CONTRIBUTING.md
doc/dev_containers.md
doc/faq.md
doc/glossary.md
doc/install_and_upgrade.md
doc/maintainers/7zip.md
doc/maintainers/archive/README.md
doc/maintainers/archive/releases.md
doc/maintainers/docker.md
doc/maintainers/docker_images.md
doc/maintainers/ghc.md
doc/maintainers/haskellstack.org.md
doc/maintainers/msys.md
doc/maintainers/releases.md
doc/maintainers/self-hosted_runners.md
doc/maintainers/stack_errors.md
doc/maintainers/team_process.md
doc/other_resources.md
doc/README.md
doc/SIGNING_KEY.md
doc/topics/azure_ci.md
doc/topics/CI.md
doc/topics/custom_snapshot.md
doc/topics/debugging.md
doc/topics/developing_on_windows.md
doc/topics/docker_integration.md
doc/topics/editor_integration.md
doc/topics/haskell_and_c_code.md
doc/topics/index.md
doc/topics/lock_files.md
doc/topics/nix_integration.md
doc/topics/nonstandard_project_init.md
doc/topics/package_location.md
doc/topics/scripts.md
doc/topics/shell_autocompletion.md
doc/topics/snapshot_location.md
doc/topics/Stack_and_VS_Code.md
doc/topics/stack_root.md
doc/topics/stack_work.md
doc/topics/stack_yaml_vs_cabal_package_file.md
doc/topics/travis_ci.md
doc/tutorial/building_existing_projects.md
doc/tutorial/building_your_project.md
doc/tutorial/cabal_flags_and_ghc_options.md
doc/tutorial/executing_commands.md
doc/tutorial/hello_world_example.md
doc/tutorial/index.md
doc/tutorial/installed_package_databases.md
doc/tutorial/locations_used_by_stack.md
doc/tutorial/multi-package_projects.md
doc/tutorial/package_description.md
doc/tutorial/project_configuration.md
doc/tutorial/stack_build_synonyms.md
doc/tutorial/stack_build_targets.md
doc/tutorial/stack_configuration.md
doc/tutorial/tutorial_conclusion.md
doc/tutorial/using_ghc_interactively.md
src/setup-shim/StackSetupShim.hs
tests/unit/package-dump/ghc-7.10.txt
tests/unit/package-dump/ghc-7.8.4-osx.txt
tests/unit/package-dump/ghc-7.8.txt
tests/unit/package-dump/ghc-head.txt
tests/unit/Stack/Untar/test1.tar.gz
tests/unit/Stack/Untar/test2.tar.gz
cabal.project
cabal.config
source-repository head
type: git
location: https://github.com/commercialhaskell/stack
custom-setup
setup-depends:
Cabal <3.12
, base >=4.14.3.0 && <5
, filepath
flag developer-mode
description: By default, output extra developer information.
manual: True
default: False
flag disable-git-info
description: Disable inclusion of current Git information in the Stack executable when it is built.
manual: True
default: False
flag disable-stack-upload
description: For use only during development and debugging. Disable 'stack upload' so that it does not make HTTP requests. Stack will output information about the HTTP request(s) that it would have made if the command was enabled.
manual: True
default: False
flag hide-dependency-versions
description: Hides dependency versions from 'stack --version'. Used only when building a Stack executable for official release. Note to packagers/distributors: DO NOT OVERRIDE THIS FLAG IF YOU ARE BUILDING STACK ANY OTHER WAY (e.g. using Cabal or from Hackage), as it makes debugging support requests more difficult.
manual: True
default: False
flag integration-tests
description: Run the integration test suite.
manual: True
default: False
flag static
description: When building the Stack executable, or the stack-integration-test executable, pass the -static and -pthread flags to the linker used by GHC.
manual: True
default: False
flag supported-build
description: If false, causes 'stack --version' to issue a warning about the build being unsupported. Used only when building a Stack executable for official release. Note to packagers/distributors: DO NOT OVERRIDE THIS FLAG IF YOU ARE BUILDING STACK ANY OTHER WAY (e.g. using Cabal or from Hackage), as it makes debugging support requests more difficult.
manual: True
default: False
library
exposed-modules:
Control.Concurrent.Execute
Data.Attoparsec.Args
Data.Attoparsec.Combinators
Data.Attoparsec.Interpreter
Data.Monoid.Map
GHC.Utils.GhcPkg.Main.Compat
Network.HTTP.StackClient
Options.Applicative.Args
Options.Applicative.Builder.Extra
Options.Applicative.Complicated
Path.CheckInstall
Path.Extended
Path.Extra
Path.Find
Stack
Stack.Build
Stack.Build.Cache
Stack.Build.ConstructPlan
Stack.Build.Execute
Stack.Build.ExecuteEnv
Stack.Build.ExecutePackage
Stack.Build.Haddock
Stack.Build.Installed
Stack.Build.Source
Stack.Build.Target
Stack.BuildInfo
Stack.BuildOpts
Stack.BuildPlan
Stack.CLI
Stack.Clean
Stack.Component
Stack.ComponentFile
Stack.Config
Stack.Config.Build
Stack.Config.ConfigureScript
Stack.Config.Docker
Stack.Config.Nix
Stack.ConfigCmd
Stack.Constants
Stack.Constants.Config
Stack.Constants.StackProgName
Stack.Coverage
Stack.DefaultColorWhen
Stack.DependencyGraph
Stack.Docker
Stack.DockerCmd
Stack.Dot
Stack.Eval
Stack.Exec
Stack.FileWatch
Stack.GhcPkg
Stack.Ghci
Stack.Ghci.Script
Stack.Hoogle
Stack.IDE
Stack.Init
Stack.List
Stack.Ls
Stack.Lock
Stack.New
Stack.Nix
Stack.Options.BenchParser
Stack.Options.BuildMonoidParser
Stack.Options.BuildParser
Stack.Options.CleanParser
Stack.Options.ConfigParser
Stack.Options.Completion
Stack.Options.DockerParser
Stack.Options.DotParser
Stack.Options.EvalParser
Stack.Options.ExecParser
Stack.Options.GhcBuildParser
Stack.Options.GhciParser
Stack.Options.GhcVariantParser
Stack.Options.GlobalParser
Stack.Options.HaddockParser
Stack.Options.HpcReportParser
Stack.Options.InitParser
Stack.Options.LogLevelParser
Stack.Options.LsParser
Stack.Options.NewParser
Stack.Options.NixParser
Stack.Options.PackageParser
Stack.Options.PathParser
Stack.Options.SDistParser
Stack.Options.ScriptParser
Stack.Options.SetupParser
Stack.Options.SnapshotParser
Stack.Options.TestParser
Stack.Options.UnpackParser
Stack.Options.UpgradeParser
Stack.Options.UploadParser
Stack.Options.Utils
Stack.Package
Stack.PackageDump
Stack.PackageFile
Stack.Path
Stack.Prelude
Stack.Query
Stack.Runners
Stack.Script
Stack.SDist
Stack.Setup
Stack.Setup.Installed
Stack.SetupCmd
Stack.SourceMap
Stack.Storage.Project
Stack.Storage.User
Stack.Storage.Util
Stack.Templates
Stack.Types.AddCommand
Stack.Types.AllowNewerDeps
Stack.Types.ApplyGhcOptions
Stack.Types.ApplyProgOptions
Stack.Types.Build
Stack.Types.Build.ConstructPlan
Stack.Types.Build.Exception
Stack.Types.BuildConfig
Stack.Types.BuildOpts
Stack.Types.BuildOptsCLI
Stack.Types.BuildOptsMonoid
Stack.Types.CabalConfigKey
Stack.Types.Cache
Stack.Types.Casa
Stack.Types.ColorWhen
Stack.Types.CompCollection
Stack.Types.CompilerBuild
Stack.Types.CompilerPaths
Stack.Types.Compiler
Stack.Types.Component
Stack.Types.ComponentUtils
Stack.Types.Config
Stack.Types.Config.Exception
Stack.Types.ConfigMonoid
Stack.Types.ConfigureOpts
Stack.Types.Curator
Stack.Types.Dependency
Stack.Types.DependencyTree
Stack.Types.Docker
Stack.Types.DockerEntrypoint
Stack.Types.DotConfig
Stack.Types.DotOpts
Stack.Types.DownloadInfo
Stack.Types.DumpLogs
Stack.Types.DumpPackage
Stack.Types.EnvConfig
Stack.Types.EnvSettings
Stack.Types.ExtraDirs
Stack.Types.FileDigestCache
Stack.Types.GHCDownloadInfo
Stack.Types.GHCVariant
Stack.Types.GhcOptionKey
Stack.Types.GhcOptions
Stack.Types.GhcPkgId
Stack.Types.GlobalOpts
Stack.Types.GlobalOptsMonoid
Stack.Types.Installed
Stack.Types.InterfaceOpt
Stack.Types.IsMutable
Stack.Types.LockFileBehavior
Stack.Types.MsysEnvironment
Stack.Types.NamedComponent
Stack.Types.Nix
Stack.Types.Package
Stack.Types.PackageFile
Stack.Types.PackageName
Stack.Types.ParentMap
Stack.Types.Platform
Stack.Types.Project
Stack.Types.ProjectAndConfigMonoid
Stack.Types.ProjectConfig
Stack.Types.PvpBounds
Stack.Types.Runner
Stack.Types.SCM
Stack.Types.SetupInfo
Stack.Types.Snapshot
Stack.Types.SourceMap
Stack.Types.StackYamlLoc
Stack.Types.Storage
Stack.Types.TemplateName
Stack.Types.UnusedFlags
Stack.Types.UploadOpts
Stack.Types.Version
Stack.Types.VersionedDownloadInfo
Stack.Types.WantedCompilerSetter
Stack.Uninstall
Stack.Unpack
Stack.Update
Stack.Upgrade
Stack.Upload
System.Info.ShortPathName
System.Permissions
System.Process.Pager
System.Terminal
Build_stack
Paths_stack
autogen-modules:
Build_stack
Paths_stack
hs-source-dirs:
src
ghc-options: -fwrite-ide-info -hiedir=.hie -Wall -Wmissing-export-lists -optP-Wno-nonportable-include-path -Widentities
build-depends:
Cabal >=3.8.1.0 && <3.12
, aeson >=2.0.3.0
, aeson-warning-parser >=0.1.1
, ansi-terminal >=1.0.2
, array
, async
, attoparsec
, base >=4.16.0.0 && <5
, base64-bytestring
, bytestring
, casa-client >=0.0.2
, companion
, conduit
, conduit-extra
, containers
, crypton
, directory
, echo
, exceptions
, extra
, file-embed
, filelock
, filepath
, fsnotify >=0.4.1
, generic-deriving
, ghc-boot
, hashable
, hi-file-parser >=0.1.7.0
, hpack >=0.36.0
, hpc
, http-client
, http-client-tls >=0.3.6.2
, http-conduit
, http-download >=0.2.1.0
, http-types
, memory
, microlens
, mtl
, mustache
, neat-interpolation
, open-browser
, optparse-applicative >=0.18.1.0
, pantry >=0.10.0
, path >=0.9.5
, path-io
, persistent >=2.14.0.0 && <2.15
, persistent-sqlite
, pretty
, process >=1.6.13.2
, project-template
, random
, rio >=0.1.22.0
, rio-prettyprint >=0.1.8.0
, split
, stm
, tar >=0.6.2.0
, template-haskell
, text
, time
, transformers
, unix-compat
, unordered-containers
, vector
, yaml
, zlib
default-language: GHC2021
if os(windows)
cpp-options: -DWINDOWS
build-depends:
Win32
else
build-depends:
unix
build-tool-depends:
hsc2hs:hsc2hs
if impl(ghc >= 9.4.5) && os(windows)
build-depends:
network >=3.1.2.9
if flag(developer-mode)
cpp-options: -DSTACK_DEVELOPER_MODE_DEFAULT=True
else
cpp-options: -DSTACK_DEVELOPER_MODE_DEFAULT=False
if flag(disable-stack-upload)
cpp-options: -DSTACK_DISABLE_STACK_UPLOAD=True
else
cpp-options: -DSTACK_DISABLE_STACK_UPLOAD=False
if os(windows)
other-modules:
Stack.Constants.UsrLibDirs
Stack.Docker.Handlers
System.Posix.User
System.Uname
hs-source-dirs:
src/windows/
else
other-modules:
Stack.Constants.UsrLibDirs
Stack.Docker.Handlers
System.Uname
hs-source-dirs:
src/unix/
c-sources:
src/unix/cbits/uname.c
if !(flag(disable-git-info))
cpp-options: -DUSE_GIT_INFO
build-depends:
githash
, optparse-simple
if flag(hide-dependency-versions)
cpp-options: -DHIDE_DEP_VERSIONS
if flag(supported-build)
cpp-options: -DSUPPORTED_BUILD
executable stack
main-is: Main.hs
other-modules:
Paths_stack
autogen-modules:
Paths_stack
hs-source-dirs:
app
ghc-options: -fwrite-ide-info -hiedir=.hie -Wall -Wmissing-export-lists -optP-Wno-nonportable-include-path -threaded -rtsopts
build-depends:
Cabal >=3.8.1.0 && <3.12
, aeson >=2.0.3.0
, aeson-warning-parser >=0.1.1
, ansi-terminal >=1.0.2
, array
, async
, attoparsec
, base >=4.16.0.0 && <5
, base64-bytestring
, bytestring
, casa-client >=0.0.2
, companion
, conduit
, conduit-extra
, containers
, crypton
, directory
, echo
, exceptions
, extra
, file-embed
, filelock
, filepath
, fsnotify >=0.4.1
, generic-deriving
, ghc-boot
, hashable
, hi-file-parser >=0.1.7.0
, hpack >=0.36.0
, hpc
, http-client
, http-client-tls >=0.3.6.2
, http-conduit
, http-download >=0.2.1.0
, http-types
, memory
, microlens
, mtl
, mustache
, neat-interpolation
, open-browser
, optparse-applicative >=0.18.1.0
, pantry >=0.10.0
, path >=0.9.5
, path-io
, persistent >=2.14.0.0 && <2.15
, persistent-sqlite
, pretty
, process >=1.6.13.2
, project-template
, random
, rio >=0.1.22.0
, rio-prettyprint >=0.1.8.0
, split
, stack
, stm
, tar >=0.6.2.0
, template-haskell
, text
, time
, transformers
, unix-compat
, unordered-containers
, vector
, yaml
, zlib
default-language: GHC2021
if os(windows)
cpp-options: -DWINDOWS
build-depends:
Win32
else
build-depends:
unix
build-tool-depends:
hsc2hs:hsc2hs
if impl(ghc >= 9.4.5) && os(windows)
build-depends:
network >=3.1.2.9
if flag(developer-mode)
cpp-options: -DSTACK_DEVELOPER_MODE_DEFAULT=True
else
cpp-options: -DSTACK_DEVELOPER_MODE_DEFAULT=False
if flag(disable-stack-upload)
cpp-options: -DSTACK_DISABLE_STACK_UPLOAD=True
else
cpp-options: -DSTACK_DISABLE_STACK_UPLOAD=False
if flag(static)
ld-options: -static -pthread
executable stack-integration-test
main-is: IntegrationSpec.hs
other-modules:
StackTest
Paths_stack
autogen-modules:
Paths_stack
hs-source-dirs:
tests/integration
tests/integration/lib
ghc-options: -fwrite-ide-info -hiedir=.hie -Wall -Wmissing-export-lists -optP-Wno-nonportable-include-path -threaded -rtsopts -with-rtsopts=-N
build-depends:
Cabal >=3.8.1.0 && <3.12
, aeson >=2.0.3.0
, aeson-warning-parser >=0.1.1
, ansi-terminal >=1.0.2
, array
, async
, attoparsec
, base >=4.16.0.0 && <5
, base64-bytestring
, bytestring
, casa-client >=0.0.2
, companion
, conduit
, conduit-extra
, containers
, crypton
, directory
, echo
, exceptions
, extra
, file-embed
, filelock
, filepath
, fsnotify >=0.4.1
, generic-deriving
, ghc-boot
, hashable
, hi-file-parser >=0.1.7.0
, hpack >=0.36.0
, hpc
, hspec
, http-client
, http-client-tls >=0.3.6.2
, http-conduit
, http-download >=0.2.1.0
, http-types
, memory
, microlens
, mtl
, mustache
, neat-interpolation
, open-browser
, optparse-applicative >=0.18.1.0
, optparse-generic
, pantry >=0.10.0
, path >=0.9.5
, path-io
, persistent >=2.14.0.0 && <2.15
, persistent-sqlite
, pretty
, process >=1.6.13.2
, project-template
, random
, rio >=0.1.22.0
, rio-prettyprint >=0.1.8.0
, split
, stm
, tar >=0.6.2.0
, template-haskell
, text
, time
, transformers
, unix-compat
, unordered-containers
, vector
, yaml
, zlib
default-language: GHC2021
if os(windows)
cpp-options: -DWINDOWS
build-depends:
Win32
else
build-depends:
unix
build-tool-depends:
hsc2hs:hsc2hs
if impl(ghc >= 9.4.5) && os(windows)
build-depends:
network >=3.1.2.9
if flag(developer-mode)
cpp-options: -DSTACK_DEVELOPER_MODE_DEFAULT=True
else
cpp-options: -DSTACK_DEVELOPER_MODE_DEFAULT=False
if flag(disable-stack-upload)
cpp-options: -DSTACK_DISABLE_STACK_UPLOAD=True
else
cpp-options: -DSTACK_DISABLE_STACK_UPLOAD=False
if !(flag(integration-tests))
buildable: False
if flag(static)
ld-options: -static -pthread
test-suite stack-unit-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Stack.ArgsSpec
Stack.Build.ExecuteSpec
Stack.Build.TargetSpec
Stack.Config.DockerSpec
Stack.ConfigSpec
Stack.DotSpec
Stack.Ghci.ScriptSpec
Stack.GhciSpec
Stack.LockSpec
Stack.NixSpec
Stack.PackageDumpSpec
Stack.Types.TemplateNameSpec
Stack.UploadSpec
Paths_stack
autogen-modules:
Paths_stack
hs-source-dirs:
tests/unit
ghc-options: -fwrite-ide-info -hiedir=.hie -Wall -Wmissing-export-lists -optP-Wno-nonportable-include-path -threaded
build-depends:
Cabal >=3.8.1.0 && <3.12
, QuickCheck
, aeson >=2.0.3.0
, aeson-warning-parser >=0.1.1
, ansi-terminal >=1.0.2
, array
, async
, attoparsec
, base >=4.16.0.0 && <5
, base64-bytestring
, bytestring
, casa-client >=0.0.2
, companion
, conduit
, conduit-extra
, containers
, crypton
, directory
, echo
, exceptions
, extra
, file-embed
, filelock
, filepath
, fsnotify >=0.4.1
, generic-deriving
, ghc-boot
, hashable
, hi-file-parser >=0.1.7.0
, hpack >=0.36.0
, hpc
, hspec
, http-client
, http-client-tls >=0.3.6.2
, http-conduit
, http-download >=0.2.1.0
, http-types
, memory
, microlens
, mtl
, mustache
, neat-interpolation
, open-browser
, optparse-applicative >=0.18.1.0
, pantry >=0.10.0
, path >=0.9.5
, path-io
, persistent >=2.14.0.0 && <2.15
, persistent-sqlite
, pretty
, process >=1.6.13.2
, project-template
, random
, raw-strings-qq
, rio >=0.1.22.0
, rio-prettyprint >=0.1.8.0
, split
, stack
, stm
, tar >=0.6.2.0
, template-haskell
, text
, time
, transformers
, unix-compat
, unordered-containers
, vector
, yaml
, zlib
default-language: GHC2021
if os(windows)
cpp-options: -DWINDOWS
build-depends:
Win32
else
build-depends:
unix
build-tool-depends:
hsc2hs:hsc2hs
if impl(ghc >= 9.4.5) && os(windows)
build-depends:
network >=3.1.2.9
if flag(developer-mode)
cpp-options: -DSTACK_DEVELOPER_MODE_DEFAULT=True
else
cpp-options: -DSTACK_DEVELOPER_MODE_DEFAULT=False
if flag(disable-stack-upload)
cpp-options: -DSTACK_DISABLE_STACK_UPLOAD=True
else
cpp-options: -DSTACK_DISABLE_STACK_UPLOAD=False
if os(windows)
other-modules:
Stack.Ghci.FakePaths
hs-source-dirs:
tests/unit/windows/
else
other-modules:
Stack.Ghci.FakePaths
hs-source-dirs:
tests/unit/unix/
build-tool-depends:
hspec-discover:hspec-discover