aboutsummaryrefslogtreecommitdiff
path: root/default.nix
blob: cde6a4278038e8f780c861d109ec293bc8ca8e36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
with (import <nixpkgs> {});

haskell.lib.buildStackProject {
  name = "myenv";

  buildInputs = [
    zlib
    stack
    nodePackages.nodemon
    tmux
    tmuxinator
    nodejs-8_x
  ];

  shellHook = ''
    export PATH=node_modules/.bin:$PATH;
  '';
}