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