diff options
author | William Carroll <wpcarro@gmail.com> | 2020-07-24T17·59+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-07-24T17·59+0100 |
commit | ec90748b827edcd465020acd5bd23ae6a01ba37a (patch) | |
tree | e65c166e6386d09271a0192d8ea15917eb07465d /shell.nix | |
parent | 26271ec178f4edd1bf02b4697fed611915ebc698 (diff) |
Create a shell.nix
Manage the project's dependencies using Nix.
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 000000000000..3a5a4ef9ecc5 --- /dev/null +++ b/shell.nix @@ -0,0 +1,8 @@ +let + pkgs = import <nixpkgs> {}; +in pkgs.mkShell { + buildInputs = with pkgs; [ + (haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [ + ])) + ]; +} |