From c0679b404d3bd9c20133a1868113f200eae2cf9f Mon Sep 17 00:00:00 2001 From: vin Date: Sat, 31 Aug 2024 22:24:05 -0400 Subject: [PATCH] add shell.nix to get dependencies easily --- shell.nix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..6f61d98 --- /dev/null +++ b/shell.nix @@ -0,0 +1,6 @@ +with import {}; mkShellNoCC { + nativeBuildInputs = [ + bmake + clang + ]; +}