servant/nix
2021-10-02 13:10:20 +02:00
..
nixpkgs.json Build servant repo with nix. (#1288) 2020-06-06 00:04:32 -04:00
README.md unsupporting GHC < 8.6.5 in the nix-shell 2021-10-02 13:08:54 +02:00
shell.nix add missing dependencies into shell.nix 2021-10-02 13:10:20 +02:00

You can use the shell.nix from this directory to build the servant packages or even the tutorial or cookbook if you want to, optionally.

Just the servant packages:

$ nix-shell nix/shell.nix

Everything needed for the tutorial and the cookbook too:

$ nix-shell nix/shell.nix --arg tutorial true

The shell.nix file also supports specifying a particular ghc version, e.g:

$ nix-shell nix/shell.nix --argstr compiler ghcHEAD

Possible GHC versions

  • ghc865Binary
  • ghc884
  • ghc8104 - default

Cabal users

GHC version can be chosen via the nix-shell parameter

cabal build all

Stack version

Since the ghc version is set by the LTS version, it is preferable to use the ghc8104 version parameter for the nix-shell.

stack --no-nix --system-ghc <command>