aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 83935d800c5b8f262025d4f4996c4485b72bbefa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
with import <nixpkgs> {}; {
  env = stdenv.mkDerivation {
    name = "env";
    buildInputs = with pkgs; [
      elmPackages.elm
      nodePackages.nodemon
      sqlite
      stack
      tmux
      tmuxinator
    ];
  };
}