aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: eb2427eb7625683abd92532efc05377bef799c7f (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; [
      # ghc
      cabal-install
      cabal2nix
      tmux
      tmuxinator
      (haskellPackages.ghcWithPackages (p: with p; [
        (haskell.lib.dontCheck hakyll)
        clay
        text
      ]))
    ];
  };
}