All Projects → haskell → Ghcup

haskell / Ghcup

Licence: bsd-3-clause
DEPRECATED IN FAVOR OF haskell/ghcup-hs

Programming Languages

shell
77523 projects
haskell
3896 projects

Projects that are alternatives of or similar to Ghcup

Ghcup Hs
THIS REPO IS A MIRROR, BUG REPORTS GO HERE:
Stars: ✭ 44 (-82.33%)
Mutual labels:  installer, ghc
Aqtinstall
aqt: Another (unofficial) Qt CLI Installer on multi-platforms
Stars: ✭ 234 (-6.02%)
Mutual labels:  installer
Scoop
A command-line installer for Windows.
Stars: ✭ 14,508 (+5726.51%)
Mutual labels:  installer
Vscode Ghc Simple
Simple GHC (Haskell) integration for VSCode
Stars: ✭ 214 (-14.06%)
Mutual labels:  ghc
Electron Wix Msi
📀 Create traditional MSI installers for your Electron app
Stars: ✭ 197 (-20.88%)
Mutual labels:  installer
Mtprotoproxyinstaller
One-click script to install MTProto Proxy server on CentOS, Ubuntu and Debian
Stars: ✭ 216 (-13.25%)
Mutual labels:  installer
Downloadinstaller
Android App应用内更新的下载,储存,安装 ,未知来源等问题处理
Stars: ✭ 182 (-26.91%)
Mutual labels:  installer
Haskell Symbol Search Cheatsheet
Haskell/GHC symbol search cheatsheet
Stars: ✭ 243 (-2.41%)
Mutual labels:  ghc
Subiquity
Ubuntu Server Installer
Stars: ✭ 228 (-8.43%)
Mutual labels:  installer
Netboot.xyz
Your favorite operating systems in one place. A network-based bootable operating system installer based on iPXE.
Stars: ✭ 2,753 (+1005.62%)
Mutual labels:  installer
Lxrunoffline
A full-featured utility for managing Windows Subsystem for Linux (WSL)
Stars: ✭ 3,005 (+1106.83%)
Mutual labels:  installer
Issrc
Inno Setup is a free installer for Windows programs. First introduced in 1997, Inno Setup today rivals and even surpasses many commercial installers in feature set and stability.
Stars: ✭ 2,606 (+946.59%)
Mutual labels:  installer
Haskell Ghc Illustrated
haskell ghc-illustrated
Stars: ✭ 218 (-12.45%)
Mutual labels:  ghc
Haskell Gi
Generate Haskell bindings for GObject-Introspection capable libraries
Stars: ✭ 190 (-23.69%)
Mutual labels:  ghc
Kubeadm
Aggregator for issues filed against kubeadm
Stars: ✭ 2,876 (+1055.02%)
Mutual labels:  installer
Unified Hosts Autoupdate
Quickly and easily install, uninstall, and set up automatic updates for any of Steven Black's unified hosts files.
Stars: ✭ 185 (-25.7%)
Mutual labels:  installer
All Hies
Cached Haskell IDE Engine Nix builds for all GHC versions
Stars: ✭ 201 (-19.28%)
Mutual labels:  ghc
Ks Installer
Install KubeSphere on existing Kubernetes cluster
Stars: ✭ 216 (-13.25%)
Mutual labels:  installer
Nsis
***This is just a mirror of https://sf.net/projects/nsis -- please report issues there*** NSIS (Nullsoft Scriptable Install System) is a professional open source system to create Windows installers. It is designed to be as small and flexible as possible and is therefore very suitable for internet distribution.
Stars: ✭ 244 (-2.01%)
Mutual labels:  installer
Flutter installer
Flutter Installer is an installer for Flutter built with Flutter 💙😎✌
Stars: ✭ 234 (-6.02%)
Mutual labels:  installer

THIS PROJECT IS NOW DEPRECATED IN FAVOR OF ghcup-hs

--

ghcup makes it easy to install specific versions of ghc on GNU/Linux as well as macOS (aka Darwin), and can also bootstrap a fresh Haskell developer environment from scratch. It follows the unix UNIX philosophy of do one thing and do it well.

Similar in scope to rustup, pyenv and jenv.

Ubuntu users may prefer hvr's ppa.

This project was started when CM was switching from stack to cabal nix-style builds.

Table of Contents

Installation

Choose one of the following installation methods.

Simple bootstrap of ghcup, GHC and cabal-install

# complete bootstrap
curl https://gitlab.haskell.org/haskell/ghcup/raw/master/bootstrap-haskell -sSf | sh

# prepare your environment
. "$HOME/.ghcup/env"
echo '. $HOME/.ghcup/env' >> "$HOME/.bashrc" # or similar

# now create a project, such as:
mkdir myproject && cd myproject
cabal init -n --is-executable
cabal v2-run

Manual install

Just place the ghcup shell script into your PATH anywhere.

E.g.:

( mkdir -p ~/.ghcup/bin && curl https://gitlab.haskell.org/haskell/ghcup/raw/master/ghcup > ~/.ghcup/bin/ghcup && chmod +x ~/.ghcup/bin/ghcup) && echo "Success"

Then adjust your PATH in ~/.bashrc (or similar, depending on your shell) like so, for example:

export PATH="$HOME/.cabal/bin:$HOME/.ghcup/bin:$PATH"

Security aware users may want to use the files from the release page and verify the gpg signatures.

Usage

See ghcup --help.

Common use cases are:

# install the last known "best" GHC version
ghcup install
# install a specific GHC version
ghcup install 8.2.2
# set the currently "active" GHC version
ghcup set 8.4.4
# install cabal-install
ghcup install-cabal
# update cabal-install
cabal new-install cabal-install

Generally this is meant to be used with cabal-install, which handles your haskell packages and can demand that a specific version of ghc is available, which ghcup can do.

Manpages

For man pages to work you need man-db as your man provider, then issue man ghc. Manpages only work for the currently set ghc. MANPATH may be required to be unset.

Design goals

  1. simplicity
  2. non-interactive
  3. portable
  4. do one thing and do it well (UNIX philosophy)

Non-goals

  1. invoking sudo, apt-get or any package manager
  2. handling system packages
  3. handling cabal projects
  4. being a stack alternative

How

Installs a specified GHC version into ~/.ghcup/ghc/<ver>, and places ghc-<ver> symlinks in ~/.ghcup/bin/.

Optionally, an unversioned ghc link can point to a default version of your choice.

This uses precompiled GHC binaries that have been compiled on fedora/debian by upstream GHC.

Alternatively, you can also tell it to compile from source (note that this might fail due to missing requirements).

In addition this script can also install cabal-install.

Known users

Known problems

Limited distributions supported

Currently only GNU/Linux distributions compatible with the upstream GHC binaries are supported.

Precompiled binaries

Since this uses precompiled binaries you may run into several problems.

Missing libtinfo (ncurses)

You may run into problems with ncurses and missing libtinfo, in case your distribution doesn't use the legacy way of building ncurses and has no compatibility symlinks in place.

Ask your distributor on how to solve this or try to compile from source via ghcup compile <version>.

Libnuma required

This was a bug in the build system of some GHC versions that lead to unconditionally enabled libnuma support. To mitigate this you might have to install the libnuma package of your distribution. See here for a discussion.

Compilation

Although this script can compile GHC for you, it's just a very thin wrapper around the build system. It makes no effort in trying to figure out whether you have the correct toolchain and the correct dependencies. Refer to the official docs on how to prepare your environment for building GHC.

FAQ

  1. Why reimplement stack?

ghcup is not a reimplementation of stack. The only common part is automatic installation of GHC, but even that differs in scope and design.

  1. Why not contribute to stack and create a library for the common part?

While this might be an interesting idea, ghcup is about simplicity.

  1. Why write a >1000k LOC bash script?

ghcup is POSIX sh.

  1. Why write a >1000k LOC POSIX sh script?

Mainly because the implementation is fairly straight-forward and the script is highly portable. No need to bootstrap anything or set up yet another CI to build ghcup binaries for all possible arches and distros just to perform a very simple task: identify distro and platform and download a GHC bindist.

  1. Why not support windows?

Consider using Chocolatey or ghcups.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].