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