about summary refs log tree commit diff
path: root/nixpkgs/pkgs/misc/vscode-extensions/vscode-lldb/lldb.nix
blob: 2ec90b1931e84a8f0132299df2b82283a7f252d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Patched lldb for Rust language support.
{ lldb_11, fetchFromGitHub }:
let
  llvmSrc = fetchFromGitHub {
    owner = "vadimcn";
    repo = "llvm-project";
    rev = "dd7efd9ea2d38e3227bc2e83a99772aceeb44242";
    sha256 = "sha256-XY8J8Ie1cWb6ok72Gju/KUxZ4fIFQVitYVnuCezGRKQ=";
  };
in lldb_11.overrideAttrs (oldAttrs: {
  src = "${llvmSrc}/lldb";

  passthru = (oldAttrs.passthru or {}) // {
    inherit llvmSrc;
  };

  doInstallCheck = true;
  postInstallCheck = (oldAttrs.postInstallCheck or "") + ''
    versionOutput="$($out/bin/lldb --version)"
    echo "'lldb --version' returns: $versionOutput"
    echo "$versionOutput" | grep -q 'rust-enabled'
  '';
})