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