aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 6ede61ea5d7638ae4d032706692547e9a4388302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
with import <nixpkgs> {}; {
  env = stdenv.mkDerivation {
    name = "env";
    buildInputs = with pkgs; [
      cabal-install
      cabal2nix
      tmux
      tmuxinator
      nodePackages.nodemon
      (haskellPackages.ghcWithPackages (p: with p; [
        (haskell.lib.dontCheck hakyll)
        (haskell.lib.dontCheck clay)
        text
      ]))
    ];
  };
}