We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e770f7f commit 84eaf60Copy full SHA for 84eaf60
shell.nix
@@ -0,0 +1,9 @@
1
+{ pkgs ? import <nixpkgs> {} }:
2
+
3
+pkgs.mkShell {
4
+ hardeningDisable = [ "fortify" ];
5
+ buildInputs = with pkgs; [
6
+ clang
7
+ ];
8
+ LIBCLANG_PATH = "${pkgs.libclang.lib}/lib";
9
+}
0 commit comments