diff --git a/flake.nix b/flake.nix index f1a8ebf..e8230c9 100644 --- a/flake.nix +++ b/flake.nix @@ -55,6 +55,7 @@ }; nativeBuildInputs = with pkgs; [ pkg-config + libclang rustPlatform.bindgenHook ]; strictDeps = true; @@ -63,13 +64,14 @@ [ xe xz - ffmpeg-headless + clang ] ++ lib.optionals pkgs.stdenv.isLinux ( with pkgs; [ dbus pipewire + libclang ] ); }; @@ -103,6 +105,8 @@ cargo-flamegraph gdb + + ffmpeg-headless ]; LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath (builtins.concatMap (d: d.buildInputs) inputsFrom)}"; RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";