advent-2021/shell.nix

8 lines
159 B
Nix
Raw Normal View History

2021-12-02 11:35:13 +01:00
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
nativeBuildInputs = with pkgs; [
haskell-language-server
cabal-install
ghc
];
}