ghcup-hs/ghcup.cabal

342 lines
9.2 KiB
Plaintext
Raw Normal View History

2021-04-09 17:18:44 +00:00
cabal-version: 3.0
name: ghcup
2021-06-13 20:07:33 +00:00
version: 0.1.15.2
2021-04-09 17:18:44 +00:00
license: LGPL-3.0-only
license-file: LICENSE
copyright: Julian Ospald 2020
maintainer: hasufell@posteo.de
author: Julian Ospald
homepage: https://gitlab.haskell.org/haskell/ghcup-hs
bug-reports: https://gitlab.haskell.org/haskell/ghcup-hs/issues
2021-04-11 16:14:52 +00:00
synopsis: ghc toolchain installer
2020-03-24 15:49:18 +00:00
description:
A rewrite of the shell script ghcup, for providing
a more stable user experience and exposing an API.
2021-04-09 17:18:44 +00:00
category: System
build-type: Simple
extra-doc-files:
CHANGELOG.md
config.yaml
ghcup-0.0.4.yaml
ghcup-0.0.5.yaml
HACKING.md
README.md
RELEASING.md
2020-01-11 20:15:05 +00:00
source-repository head
2020-03-24 15:49:18 +00:00
type: git
2020-04-14 23:04:58 +00:00
location: https://gitlab.haskell.org/haskell/ghcup-hs.git
2020-01-11 20:15:05 +00:00
2020-07-06 20:39:16 +00:00
flag tui
2021-05-14 21:09:45 +00:00
description:
Build the brick powered tui (ghcup tui). This is disabled on windows.
2020-07-06 20:39:16 +00:00
default: False
manual: True
flag internal-downloader
2021-04-09 17:18:44 +00:00
description:
2021-05-14 21:09:45 +00:00
Compile the internal downloader, which links against OpenSSL. This is disabled on windows.
2021-04-09 17:18:44 +00:00
default: False
manual: True
flag tar
2021-07-03 15:48:39 +00:00
description: Use tar-bytestring instead of libarchive.
default: False
manual: True
2020-01-11 20:15:05 +00:00
library
2020-03-24 15:49:18 +00:00
exposed-modules:
GHCup
GHCup.Download
GHCup.Download.Utils
2020-03-24 15:49:18 +00:00
GHCup.Errors
GHCup.Platform
2020-04-10 15:36:27 +00:00
GHCup.Requirements
2020-03-24 15:49:18 +00:00
GHCup.Types
GHCup.Types.JSON
GHCup.Types.Optics
GHCup.Utils
GHCup.Utils.Dirs
GHCup.Utils.File
2021-05-14 21:09:45 +00:00
GHCup.Utils.File.Common
2020-03-24 15:49:18 +00:00
GHCup.Utils.Logger
2020-04-25 10:06:41 +00:00
GHCup.Utils.MegaParsec
2020-03-24 15:49:18 +00:00
GHCup.Utils.Prelude
GHCup.Utils.String.QQ
GHCup.Utils.Version.QQ
GHCup.Version
2021-04-09 17:18:44 +00:00
hs-source-dirs: lib
other-modules: Paths_ghcup
autogen-modules: Paths_ghcup
default-language: Haskell2010
2020-09-13 18:46:34 +00:00
default-extensions:
2021-05-14 21:09:45 +00:00
DeriveGeneric
2021-04-09 17:18:44 +00:00
LambdaCase
MultiWayIf
2021-05-14 21:09:45 +00:00
NamedFieldPuns
2021-04-09 17:18:44 +00:00
PackageImports
2021-05-14 21:09:45 +00:00
QuasiQuotes
2021-04-09 17:18:44 +00:00
RecordWildCards
ScopedTypeVariables
2020-09-13 18:46:34 +00:00
Strict
StrictData
2021-04-09 17:18:44 +00:00
TupleSections
2021-05-14 21:09:45 +00:00
TypeApplications
TypeFamilies
ViewPatterns
2021-04-09 17:18:44 +00:00
ghc-options:
-Wall -fwarn-tabs -fwarn-incomplete-uni-patterns
-fwarn-incomplete-record-updates
2020-09-13 18:46:34 +00:00
2021-04-09 17:18:44 +00:00
build-depends:
, aeson >=1.4 && <1.6
, async >=0.8 && <2.3
, base >=4.13 && <5
, base16-bytestring >=0.1.1.6 && <1.1
, binary ^>=0.8.6.0
, bytestring ^>=0.10
, case-insensitive ^>=1.2.1.0
, casing ^>=0.1.4.1
, concurrent-output ^>=1.10.11
, containers ^>=0.6
, cryptohash-sha256 ^>=0.11.101.0
2021-05-14 21:09:45 +00:00
, deepseq ^>=1.4.4.0
, directory ^>=1.3.6.0
, disk-free-space ^>=0.1.0.1
2021-05-14 21:09:45 +00:00
, extra ^>=1.7.9
, filepath ^>=1.4.2.1
2021-04-09 17:18:44 +00:00
, generics-sop ^>=0.5
, haskus-utils-types ^>=1.5
, haskus-utils-variant >=3.0 && <3.2
2021-06-10 13:10:53 +00:00
, lzma-static ^>=5.2.5.3
2021-04-09 17:18:44 +00:00
, megaparsec >=8.0.0 && <9.1
, monad-logger ^>=0.3.31
, mtl ^>=2.2
, optics >=0.2 && <0.5
, optics-vl ^>=0.2
, os-release ^>=1.0.0
, parsec ^>=3.1
, pretty ^>=1.1.3.1
, pretty-terminal ^>=0.1.0.0
, regex-posix ^>=0.96
, resourcet ^>=1.2.2
, safe ^>=0.3.18
, safe-exceptions ^>=0.1
, split ^>=0.2.3.4
, strict-base ^>=0.4
, string-interpolate >=0.2.0.0 && <0.4
2021-05-14 21:09:45 +00:00
, template-haskell >=2.7 && <2.18
, temporary ^>=1.3
2021-04-09 17:18:44 +00:00
, text ^>=1.2.4.0
, time ^>=1.9.3
, transformers ^>=0.5
, unliftio-core ^>=0.2.0.1
2021-04-09 17:18:44 +00:00
, unordered-containers ^>=0.2.10.0
, uri-bytestring ^>=0.3.2.2
, utf8-string ^>=1.0
, vector ^>=0.12
2021-07-03 15:48:39 +00:00
, versions >=4.0.1 && <5.1
2021-04-09 17:18:44 +00:00
, word8 ^>=0.1.3
, yaml ^>=0.11.4.0
2021-06-07 15:09:47 +00:00
, zip ^>=1.7.1
2021-04-09 17:18:44 +00:00
, zlib ^>=0.6.2.2
2020-01-11 20:15:05 +00:00
2021-05-14 21:09:45 +00:00
if (flag(internal-downloader) && !os(windows))
exposed-modules: GHCup.Download.IOStreams
cpp-options: -DINTERNAL_DOWNLOADER
2021-04-09 17:18:44 +00:00
build-depends:
, HsOpenSSL >=0.11.4.18
, http-io-streams >=0.1.2.0
2021-05-14 21:09:45 +00:00
, io-streams >=1.5.2.1
2021-04-09 17:18:44 +00:00
, terminal-progress-bar >=0.4.1
2021-06-13 18:26:39 +00:00
if flag(tar)
2021-04-09 17:18:44 +00:00
cpp-options: -DTAR
2021-05-14 21:09:45 +00:00
build-depends: tar
2021-04-09 17:18:44 +00:00
else
2021-04-09 17:18:44 +00:00
build-depends: libarchive ^>=3.0.0.0
2021-05-14 21:09:45 +00:00
if os(windows)
cpp-options: -DIS_WINDOWS
other-modules: GHCup.Utils.File.Windows
build-depends:
, bzlib
, process ^>=1.6.11.0
, retry ^>=0.8.1.2
, Win32 ^>=2.10
else
other-modules: GHCup.Utils.File.Posix
build-depends:
, bz2 >=0.5.0.5 && <1.1
, hpath-posix ^>=0.13.3
, process ^>=1.6.9
, unix ^>=2.7
, unix-bytestring ^>=0.3.7.3
if (flag(tui) && !os(windows))
cpp-options: -DBRICK
build-depends: vty >=5.28.2 && <5.34
2020-01-11 20:15:05 +00:00
executable ghcup
2021-04-09 17:18:44 +00:00
main-is: Main.hs
hs-source-dirs: app/ghcup
default-language: Haskell2010
2020-09-13 18:46:34 +00:00
default-extensions:
2021-04-09 17:18:44 +00:00
LambdaCase
MultiWayIf
2021-05-14 21:09:45 +00:00
NamedFieldPuns
2021-04-09 17:18:44 +00:00
PackageImports
RecordWildCards
ScopedTypeVariables
2020-09-13 18:46:34 +00:00
Strict
StrictData
2021-04-09 17:18:44 +00:00
TupleSections
ghc-options:
-Wall -fwarn-tabs -fwarn-incomplete-uni-patterns
-fwarn-incomplete-record-updates -threaded
build-depends:
, base >=4.13 && <5
, bytestring ^>=0.10
, containers ^>=0.6
2021-05-14 21:09:45 +00:00
, filepath ^>=1.4.2.1
2021-04-09 17:18:44 +00:00
, ghcup
, haskus-utils-variant >=3.0 && <3.2
, megaparsec >=8.0.0 && <9.1
, monad-logger ^>=0.3.31
, mtl ^>=2.2
, optparse-applicative >=0.15.1.0 && <0.17
, pretty ^>=1.1.3.1
, pretty-terminal ^>=0.1.0.0
, resourcet ^>=1.2.2
, safe ^>=0.3.18
, safe-exceptions ^>=0.1
, string-interpolate >=0.2.0.0 && <0.4
2021-05-14 21:09:45 +00:00
, template-haskell >=2.7 && <2.18
2021-04-09 17:18:44 +00:00
, text ^>=1.2.4.0
, uri-bytestring ^>=0.3.2.2
, utf8-string ^>=1.0
2021-07-03 15:48:39 +00:00
, versions >=4.0.1 && <5.1
2020-09-13 18:46:34 +00:00
2020-04-29 17:12:58 +00:00
if flag(internal-downloader)
2021-04-09 17:18:44 +00:00
cpp-options: -DINTERNAL_DOWNLOADER
2020-04-29 17:12:58 +00:00
2021-05-14 21:09:45 +00:00
if (flag(tui) && !os(windows))
2021-04-09 17:18:44 +00:00
cpp-options: -DBRICK
2020-07-06 20:39:16 +00:00
other-modules: BrickMain
2021-04-09 17:18:44 +00:00
build-depends:
2021-05-14 21:09:45 +00:00
, brick >=0.5 && <0.62
, transformers ^>=0.5
, vector ^>=0.12
, vty >=5.28.2 && <5.34
2020-04-29 17:12:58 +00:00
2021-05-14 21:09:45 +00:00
if os(windows)
cpp-options: -DIS_WINDOWS
2021-06-13 18:26:39 +00:00
if flag(tar)
2021-04-09 17:18:44 +00:00
cpp-options: -DTAR
else
2021-04-09 17:18:44 +00:00
build-depends: libarchive ^>=3.0.0.0
executable ghcup-gen
main-is: Main.hs
hs-source-dirs: app/ghcup-gen
other-modules: Validate
default-language: Haskell2010
default-extensions:
2021-05-14 21:09:45 +00:00
DeriveGeneric
2021-04-09 17:18:44 +00:00
LambdaCase
MultiWayIf
2021-05-14 21:09:45 +00:00
NamedFieldPuns
2021-04-09 17:18:44 +00:00
PackageImports
2021-05-14 21:09:45 +00:00
QuasiQuotes
2021-04-09 17:18:44 +00:00
RecordWildCards
ScopedTypeVariables
2021-05-14 21:09:45 +00:00
Strict
StrictData
2021-04-09 17:18:44 +00:00
TupleSections
2021-05-14 21:09:45 +00:00
TypeApplications
TypeFamilies
ViewPatterns
2021-04-09 17:13:36 +00:00
ghc-options:
2021-04-09 17:18:44 +00:00
-Wall -fwarn-tabs -fwarn-incomplete-uni-patterns
-fwarn-incomplete-record-updates -threaded
build-depends:
, base >=4.13 && <5
, bytestring ^>=0.10
, containers ^>=0.6
2021-05-14 21:09:45 +00:00
, filepath ^>=1.4.2.1
2021-04-09 17:18:44 +00:00
, ghcup
, haskus-utils-variant >=3.0 && <3.2
, monad-logger ^>=0.3.31
, mtl ^>=2.2
, optics >=0.2 && <0.5
, optparse-applicative >=0.15.1.0 && <0.17
, pretty ^>=1.1.3.1
, pretty-terminal ^>=0.1.0.0
, regex-posix ^>=0.96
, resourcet ^>=1.2.2
, safe-exceptions ^>=0.1
, string-interpolate >=0.2.0.0 && <0.4
, text ^>=1.2.4.0
, transformers ^>=0.5
, uri-bytestring ^>=0.3.2.2
2021-07-03 15:48:39 +00:00
, versions >=4.0.1 && <5.1
2021-04-09 17:18:44 +00:00
, yaml ^>=0.11.4.0
2021-04-09 17:13:36 +00:00
2021-06-13 18:26:39 +00:00
if flag(tar)
2021-04-09 17:18:44 +00:00
cpp-options: -DTAR
2021-05-14 21:09:45 +00:00
build-depends: tar
2021-04-09 17:39:14 +00:00
else
build-depends: libarchive ^>=3.0.0.0
2020-03-24 15:49:18 +00:00
2021-04-09 17:18:44 +00:00
test-suite ghcup-test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
2020-04-10 15:36:27 +00:00
other-modules:
2021-04-09 17:18:44 +00:00
GHCup.ArbitraryTypes
GHCup.Types.JSONSpec
Spec
2020-03-24 15:49:18 +00:00
2021-04-09 17:18:44 +00:00
default-language: Haskell2010
default-extensions:
LambdaCase
MultiWayIf
PackageImports
RecordWildCards
ScopedTypeVariables
TupleSections
2021-04-02 14:54:27 +00:00
2021-04-09 17:13:36 +00:00
ghc-options:
2021-04-09 17:18:44 +00:00
-Wall -fwarn-tabs -fwarn-incomplete-uni-patterns
-fwarn-incomplete-record-updates
2021-04-09 17:13:36 +00:00
build-tool-depends: hspec-discover:hspec-discover
2021-04-09 17:18:44 +00:00
build-depends:
, base >=4.13 && <5
, bytestring ^>=0.10
, containers ^>=0.6
, generic-arbitrary ^>=0.1.0
, ghcup
2021-05-14 21:09:45 +00:00
, hspec ^>=2.7.10
, hspec-golden-aeson ^>=0.9
2021-04-09 17:18:44 +00:00
, QuickCheck ^>=2.14.1
, quickcheck-arbitrary-adt ^>=0.3.1.0
, text ^>=1.2.4.0
, uri-bytestring ^>=0.3.2.2
2021-07-03 15:48:39 +00:00
, versions >=4.0.1 && <5.1