Skip to content

Commit 0401810

Browse files
author
Pascal Hertleif
committed
Fix nix env
1 parent e1ade36 commit 0401810

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

shell.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ pkgs.mkShell {
77
nodejs-12_x
88
python37 # for node-gyp
99
can-utils
10+
clang
11+
llvmPackages.libclang.lib
1012

1113
# keep this line if you use bash
1214
pkgs.bashInteractive
1315
];
16+
17+
# Needed so bindgen can find libclang.so
18+
LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib";
1419
}

0 commit comments

Comments
 (0)