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