From 94a9317288b24dab68768b0619ae5edd1660d87b Mon Sep 17 00:00:00 2001 From: Adam A Date: Mon, 30 Sep 2024 21:06:00 +0300 Subject: [PATCH] chore: add basic shell.nix --- shell.nix | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000000..3621f4dad3 --- /dev/null +++ b/shell.nix @@ -0,0 +1,5 @@ +{ pkgs ? import {} }: pkgs.mkShell{ + nativeBuildInputs = with pkgs; [pkg-config rustPlatform.bindgenHook]; + buildInputs = with pkgs; [systemdMinimal.dev libclang.lib]; + LIBCLANG_PATH = "${pkgs.libclang.lib}/lib"; +}