Skip to content

Commit

Permalink
Add shell.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianFreudiger authored Aug 24, 2023
1 parent 53ead32 commit c73b86d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{pkgs ? import <nixpkgs> {} }:
pkgs.clangStdenv.mkDerivation {
name = "devShell";
buildInputs = with pkgs; [
rustc
cargo

meson
cmocka
pkgconfig
json_c
ninja
libclang.lib
];
hardeningDisable = [ "all" ];
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib";
}

0 comments on commit c73b86d

Please sign in to comment.