From ec90748b827edcd465020acd5bd23ae6a01ba37a Mon Sep 17 00:00:00 2001 From: William Carroll Date: Fri, 24 Jul 2020 18:59:34 +0100 Subject: [PATCH] Create a shell.nix Manage the project's dependencies using Nix. --- shell.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 000000000..3a5a4ef9e --- /dev/null +++ b/shell.nix @@ -0,0 +1,8 @@ +let + pkgs = import {}; +in pkgs.mkShell { + buildInputs = with pkgs; [ + (haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [ + ])) + ]; +}