From 6fd6dd760c16e795a40537eefbadab25d4571c7f Mon Sep 17 00:00:00 2001 From: Gregory Bednov Date: Sat, 14 Jun 2025 18:43:20 +0300 Subject: [PATCH] Create shell.nix --- shell.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..78b508d --- /dev/null +++ b/shell.nix @@ -0,0 +1,7 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + ghc + ]; +} \ No newline at end of file