I am trying to build some cpp projects with the help of shell.nix
{ pkgs ? import {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
clang_14
clang-tools_14
cmake
doxygen
git
pkg-config
python3
zlib
binutils
libelf
# libdwarf
libdwarf.dev
libbfd
libdwg
elfutils
];
}
when I am running cmake …
I am getting
– Could NOT find libdwarf (missing: LIBDWARF_INCLUDE_DIR)
and later will fail the comp
the porject I am trying to build is GitHub - cmu-db/bustub: The BusTub Relational Database Management System (Educational)