aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: fb7cb336e055638d45de485fa12a765f0a282fd5 (plain)
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
with import <nixpkgs> {}; {
  env = stdenv.mkDerivation {
    name = "env";
    buildInputs = [
      cabal-install
      cabal2nix
      tmux
      tmuxinator
      nodePackages.nodemon
      (haskellPackages.ghcWithPackages (p: with p; [
        text
        bytestring
        containers
        directory
        time
        http-conduit
        tagsoup
        mime-mail
        blaze-html
        blaze-markup
        clay
        config-manager
      ]))
    ];
  };
}