-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathshell.nix
More file actions
28 lines (24 loc) · 775 Bytes
/
shell.nix
File metadata and controls
28 lines (24 loc) · 775 Bytes
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
let
pkgs = import <nixpkgs> { };
hsPkgs = import ./default.nix;
in
hsPkgs.shellFor {
packages = ps: [ ps.esa-space-protocols ];
# Builds a Hoogle documentation index of all dependencies,
# and provides a "hoogle" command to search the index.
# withHoogle = true;
withHoogle = false;
# Haskell tools compiled using haskell.nix
# See overlays/tools.nix for more details
# tools = { cabal = "3.2.0.0"; hlint = "2.2.11"; };
# tools = { ghcide = "0.2.0"; };
# Other packages (compiled using nixpkgs haskell infrastructure)
buildInputs = [
pkgs.cabal-install
pkgs.stack
# pkgs.haskell.packages.ghc865.ghcide
];
# Prevents cabal from choosing alternate plans, so that
# *all* dependencies are provided by Nix.
# exactDeps = true;
}