<jackdk>
Has anyone here managed to stand up a nix-shell that can build libxml-ruby? Normally I can get away with putting native dependencies into the shell buildInputs and it's fine, but here the extconf.rb doesn't find the headers
<jackdk>
Figured it out. Add libxml2.dev to `buildInputs`, then `bundle config build.libxml-ruby --with-xml2-config=$(which xml2-config)` inside the shell. `bundle install` succeeded after that