advent-2021/shell.nix

9 lines
201 B
Nix
Raw Permalink Normal View History

2021-12-02 11:35:13 +01:00
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
nativeBuildInputs = with pkgs; [
haskell-language-server
2021-12-06 19:48:35 +01:00
(ghc.withPackages (pkgs: with pkgs; [
split
]))
2021-12-02 11:35:13 +01:00
];
}