aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 4d32712388d2ffcb184b6ff3bb2b49fe4efc2b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
with import <nixpkgs> {}; {
  env = stdenv.mkDerivation {
    name = "env";
    buildInputs = with pkgs; [
      stack
      purescript
      nodePackages.nodemon
      nodePackages.bower
      yarn
      tmux
      tmuxinator
      nodejs-7_x
    ];
    shellHook = ''
      export PATH=node_modules/.bin:$PATH;
    '';
  };
}