advent-2021/shell.nix

8 lines
159 B
Nix

{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
nativeBuildInputs = with pkgs; [
haskell-language-server
cabal-install
ghc
];
}