vscode-extensions.vadimcn.vscode-lldb: Fix python script pathname error

There was a change in upstream (see vadimcn/codelldb@7a6346b5a6 ) which changes the location of the python scripts. Fixes nixos/nixpkgs#239403.

Signed-off-by: Michael Pacheco <git@michaelpacheco.org>
This commit is contained in:
Michael Pacheco 2023-06-28 17:04:00 -07:00
parent 8d28f8528e
commit ca7381d5e2
No known key found for this signature in database
GPG Key ID: 2A1E939CF48AC3CC

View File

@ -106,7 +106,8 @@ in stdenv.mkDerivation {
mkdir -p $ext/{adapter,formatters}
mv -t $ext vsix-extracted/extension/*
cp -t $ext/adapter ${adapter}/{bin,lib}/* ../adapter/*.py
cp -t $ext/adapter ${adapter}/{bin,lib}/*
cp -r ../adapter/scripts $ext/adapter
wrapProgram $ext/adapter/codelldb \
--set-default LLDB_DEBUGSERVER_PATH "${lldb.out}/bin/lldb-server"
cp -t $ext/formatters ../formatters/*.py