aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 0585615f4b39976b443e903aac54ee18e857ea39 (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; [
      cabal-install
      nodemon
      stylish-haskell
      tmux
      tmuxinator
    ];
  };
}