{ stdenv, vscode-utils , fetchurl, unzip , mono, writeScript, runtimeShell , jq, clang-tools , gdbUseFixed ? true, gdb # The gdb default setting will be fixed to specified. Use version from `PATH` otherwise. }: assert gdbUseFixed -> null != gdb; /* Note that this version of the extension still has some nix specific issues which could not be fixed merely by patching (inside a C# dll). In particular, the debugger requires either gnome-terminal or xterm. However instead of looking for the terminal executable in `PATH`, for any linux platform the dll uses an hardcoded path to one of these. So, in order for debugging to work properly, you merely need to create symlinks to one of these terminals at the appropriate location. The good news is the the utility library is open source and with some effort we could build a patched version ourselves. See: Also, the extension should eventually no longer require an external terminal. See: Once the symbolic link temporary solution taken, everything shoud run smootly. */ let gdbDefaultsTo = if gdbUseFixed then "${gdb}/bin/gdb" else "gdb"; langComponentBinaries = stdenv.mkDerivation rec { name = "cpptools-language-component-binaries"; src = fetchurl { # Follow https://go.microsoft.com/fwlink/?linkid=2037608 url = "https://download.visualstudio.microsoft.com/download/pr/fd05d7fd-b771-4746-9c54-b5b30afcd82e/1f443716d6156a265bf50cb6e53fa999/bin_linux.zip"; sha256 = "198xnq709clibjmd8rrv0haniy2m3qvhn89hg9hpj6lvg9lsr7a4"; }; sourceRoot = name; nativeBuildInputs = [ unzip ]; unpackPhase = '' runHook preUnpack unzip -d $name $src || true runHook postUnpack ''; installPhase = '' runHook preInstall mkdir -p "$out/bin" cp -a -t "$out/bin" ./bin/* runHook postInstall ''; postFixup = '' elfInterpreter="$(cat $NIX_CC/nix-support/dynamic-linker)" patchelf --set-interpreter "$elfInterpreter" $out/bin/Microsoft.VSCode.CPP.Extension.linux patchelf --set-interpreter "$elfInterpreter" $out/bin/Microsoft.VSCode.CPP.IntelliSense.Msvc.linux chmod a+x $out/bin/Microsoft.VSCode.CPP.Extension.linux $out/bin/Microsoft.VSCode.CPP.IntelliSense.Msvc.linux ''; }; openDebugAD7Script = writeScript "OpenDebugAD7" '' #!${runtimeShell} BIN_DIR="$(cd "$(dirname "$0")" && pwd -P)" ${if gdbUseFixed then '' export PATH=''${PATH}''${PATH:+:}${gdb}/bin '' else ""} ${mono}/bin/mono $BIN_DIR/bin/OpenDebugAD7.exe $* ''; in vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "cpptools"; publisher = "ms-vscode"; version = "0.26.0"; sha256 = "1njclj07amj9n187k3rbjvddkhmsc4aljdbsgjxpj58fv7zdy7kq"; }; buildInputs = [ jq ]; postPatch = '' mv ./package.json ./package_ori.json # 1. Add activation events so that the extension is functional. This listing is empty when unpacking the extension but is filled at runtime. # 2. Patch `package.json` so that nix's *gdb* is used as default value for `miDebuggerPath`. cat ./package_ori.json | \ jq --slurpfile actEvts ${./package-activation-events.json} '(.activationEvents) = $actEvts[0]' | \ jq '(.contributes.debuggers[].configurationAttributes | .attach , .launch | .properties.miDebuggerPath | select(. != null) | select(.default == "/usr/bin/gdb") | .default) = "${gdbDefaultsTo}"' > \ ./package.json # Prevent download/install of extensions touch "./install.lock" # Move unused files out of the way. mv ./debugAdapters/bin/OpenDebugAD7.exe.config ./debugAdapters/bin/OpenDebugAD7.exe.config.unused # Combining the language component binaries as part of our package. find "${langComponentBinaries}/bin" -mindepth 1 -maxdepth 1 | xargs cp -p -t "./bin" # Mono runtimes from nix package (used by generated `OpenDebugAD7`). rm "./debugAdapters/OpenDebugAD7" cp -p "${openDebugAD7Script}" "./debugAdapters/OpenDebugAD7" # Clang-format from nix package. mkdir -p "./LLVM" find "${clang-tools}" -mindepth 1 -maxdepth 1 | xargs ln -s -t "./LLVM" ''; meta = with stdenv.lib; { license = licenses.unfree; maintainers = [ maintainers.jraygauthier ]; # A 32 bit linux would also be possible with some effort (specific download of binaries + # patching of the elf files with 32 bit interpreter). platforms = [ "x86_64-linux" ]; }; }