├── .available-versions ├── .bash-completion ├── .download-urls ├── .gitlab-ci.yml ├── .gitlab ├── before_script │ ├── darwin │ │ └── install_deps.sh │ └── linux │ │ ├── install_deps.sh │ │ └── install_shellcheck.sh ├── ghcup_env └── script │ ├── ghcup_cached_tarball.sh │ ├── ghcup_version.sh │ └── shellcheck.sh ├── .requirements └── ghc │ ├── alpine │ ├── darwin │ ├── default │ └── ubuntu ├── CHANGELOG.md ├── CONTRIBUTING.md ├── COPYING ├── README.md ├── bootstrap-haskell ├── generate_changelog.sh ├── ghcup └── www ├── LICENSE ├── copy.svg ├── fonts ├── FiraSans-Light.woff ├── FiraSans-Medium.woff ├── FiraSans-Regular.woff ├── Inconsolata-Regular.ttf ├── OFL.txt └── WorkSans-Medium.ttf ├── ghcup.css ├── ghcup.js ├── haskell-logo.svg ├── index.html └── normalize.css /.available-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/.available-versions -------------------------------------------------------------------------------- /.bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/.bash-completion -------------------------------------------------------------------------------- /.download-urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/.download-urls -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/before_script/darwin/install_deps.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -eux 4 | 5 | #sudo brew reinstall gmp 6 | 7 | exit 0 8 | -------------------------------------------------------------------------------- /.gitlab/before_script/linux/install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/.gitlab/before_script/linux/install_deps.sh -------------------------------------------------------------------------------- /.gitlab/before_script/linux/install_shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/.gitlab/before_script/linux/install_shellcheck.sh -------------------------------------------------------------------------------- /.gitlab/ghcup_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/.gitlab/ghcup_env -------------------------------------------------------------------------------- /.gitlab/script/ghcup_cached_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/.gitlab/script/ghcup_cached_tarball.sh -------------------------------------------------------------------------------- /.gitlab/script/ghcup_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/.gitlab/script/ghcup_version.sh -------------------------------------------------------------------------------- /.gitlab/script/shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/.gitlab/script/shellcheck.sh -------------------------------------------------------------------------------- /.requirements/ghc/alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/.requirements/ghc/alpine -------------------------------------------------------------------------------- /.requirements/ghc/darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/.requirements/ghc/darwin -------------------------------------------------------------------------------- /.requirements/ghc/default: -------------------------------------------------------------------------------- 1 | curl g++ gcc gmp make ncurses realpath xz-utils 2 | -------------------------------------------------------------------------------- /.requirements/ghc/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/.requirements/ghc/ubuntu -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap-haskell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/bootstrap-haskell -------------------------------------------------------------------------------- /generate_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/generate_changelog.sh -------------------------------------------------------------------------------- /ghcup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/ghcup -------------------------------------------------------------------------------- /www/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/www/LICENSE -------------------------------------------------------------------------------- /www/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/www/copy.svg -------------------------------------------------------------------------------- /www/fonts/FiraSans-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/www/fonts/FiraSans-Light.woff -------------------------------------------------------------------------------- /www/fonts/FiraSans-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/www/fonts/FiraSans-Medium.woff -------------------------------------------------------------------------------- /www/fonts/FiraSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/www/fonts/FiraSans-Regular.woff -------------------------------------------------------------------------------- /www/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/www/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /www/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/www/fonts/OFL.txt -------------------------------------------------------------------------------- /www/fonts/WorkSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/www/fonts/WorkSans-Medium.ttf -------------------------------------------------------------------------------- /www/ghcup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/www/ghcup.css -------------------------------------------------------------------------------- /www/ghcup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/www/ghcup.js -------------------------------------------------------------------------------- /www/haskell-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/www/haskell-logo.svg -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/www/index.html -------------------------------------------------------------------------------- /www/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/ghcup/HEAD/www/normalize.css --------------------------------------------------------------------------------