commit 2e3f2193c4ea7ae55afb8bcaecfc58440d4d6b06 parent 7f488886e3eb41c090f582a22d28385485e92290 Author: William Casarin <jb55@jb55.com> Date: Wed, 20 Dec 2023 18:48:42 -0800 add nix shell Diffstat:
M | .gitignore | | | 1 | - |
A | shell.nix | | | 7 | +++++++ |
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore @@ -6,7 +6,6 @@ keys.txt test .buildcmd .build-result -shell.nix *.dSYM *.zst testdata/many-events.json diff --git a/shell.nix b/shell.nix @@ -0,0 +1,7 @@ +{ pkgs ? import <nixpkgs> {} }: +with pkgs; +mkShell { + buildInputs = [ autoreconfHook flatbuffers flatcc pkg-config ]; + + LIBCLANG_PATH="${llvmPackages.libclang}/lib"; +}