aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: aaa4ebd2d0aa799307edb44a85acee6bf492e5b7 (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
  ];

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