mirror of
https://github.com/tweag/distributed-closure.git
synced 2024-11-25 08:19:05 +03:00
12 lines
118 B
Nix
12 lines
118 B
Nix
|
{pkgs ? import ./nixpkgs.nix {}}:
|
||
|
|
||
|
with pkgs;
|
||
|
|
||
|
mkShell {
|
||
|
LANG="C.UTF-8";
|
||
|
buildInputs = [
|
||
|
ghc
|
||
|
stack
|
||
|
];
|
||
|
}
|