distributed-closure/shell.nix

12 lines
118 B
Nix
Raw Normal View History

{pkgs ? import ./nixpkgs.nix {}}:
with pkgs;
mkShell {
LANG="C.UTF-8";
buildInputs = [
ghc
stack
];
}