aggreact/shell.nix

13 lines
258 B
Nix
Raw Normal View History

with import nix/nixpkgs.nix {};
mkShell {
name = "aggreact";
buildInputs = [ gnupg
haskellPackages.stack
haskellPackages.ghcid
];
LC_ALL = "en_US.UTF-8";
LANG = "en_US.UTF-8";
TMPDIR = "/tmp";
}