From e24fecea52fb7fa8cf6277576f8f2687f618a506 Mon Sep 17 00:00:00 2001 From: Felix Suchert Date: Wed, 28 Dec 2022 12:05:16 +0100 Subject: [PATCH] add shell.nix --- shell.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..9df84e1 --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + propagatedNativeBuildInputs = with pkgs; [ + flex + bison + clang + ]; + +} +