From 891cd41e465880aa239d4f4a13b0e8508e392735 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Mon, 9 Dec 2024 21:43:28 -0500 Subject: [PATCH] Add shell.nix file --- shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..e5d151b --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +let + pkgs = import {}; +in +pkgs.mkShell { + buildInputs = [ + pkgs.haskell.compiler.ghc90 + pkgs.cabal-install + pkgs.llvm_18 + ]; +}