aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 23a72559ec0217964ccdb5addba946f887847eae (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; [
      elmPackages.elm
      nodePackages.nodemon
      sqlite
      cabal-install
      cabal2nix
      tmux
      tmuxinator
    ];
    shellHook = ''
      export PATH=node_modules/.bin:$PATH;
    '';
  };
}