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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
(pkgs.haskellPackages.ghcWithHoogle (h: [
h.error
h.pa-label
h.pa-error-tree
h.pa-pretty
h.hspec
h.hspec-expectations-pretty-diff
h.HUnit
h.PyF
h.semigroupoids
h.nonempty-containers
h.deriving-compat
h.text
h.bytestring
h.selective
h.hedgehog
h.attoparsec
h.aeson-better-errors
h.unix
h.unliftio
h.base64-bytestring
h.hscolour
h.ansi-terminal
h.nicify-lib
h.case-insensitive
h.prettyprinter
h.optparse-applicative
]))
pkgs.haskellPackages.cabal-install
pkgs.haskellPackages.haskell-language-server
pkgs.rustc
pkgs.cargo
pkgs.python3
# keep this line if you use bash
pkgs.bashInteractive
];
}
|