lldb: add support for Lua bindings in LLDB 14

This commit is contained in:
Albin Otterhäll 2022-09-12 12:14:57 +02:00
parent 5251f922bb
commit 86d743a958

View File

@ -21,6 +21,7 @@
, lit
, makeWrapper
, enableManpages ? false
, lua5_3
}:
stdenv.mkDerivation (rec {
@ -48,7 +49,7 @@ stdenv.mkDerivation (rec {
outputs = [ "out" "lib" "dev" ];
nativeBuildInputs = [
cmake python3 which swig lit makeWrapper
cmake python3 which swig lit makeWrapper lua5_3
] ++ lib.optionals enableManpages [
python3.pkgs.sphinx python3.pkgs.recommonmark
];