aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 64bbcc91e45e645f318977a03b5f10ea95cc5202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
with import <nixpkgs> {}; {
  env = stdenv.mkDerivation {
    name = "env";
    buildInputs = [
      cabal-install
      cabal2nix
      tmux
      tmuxinator
      nodePackages.nodemon
    ];
  };
}