aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 7f7f3bde3afa51b2f2a1597f09b9347bcd026dfb (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-8_x
    ];
    shellHook = ''
      export PATH=node_modules/.bin:$PATH;
    '';
  };
}