Skip to content

Commit

Permalink
vscode-lldb: 1.6.10 -> 1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
NickHu committed Sep 14, 2022
1 parent c1831f6 commit d8198c2
Show file tree
Hide file tree
Showing 13 changed files with 3,908 additions and 436 deletions.
3 changes: 2 additions & 1 deletion pkgs/applications/editors/vscode/extensions/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
, python3Packages
, jdk
, llvmPackages_8
, llvmPackages_14
, nixpkgs-fmt
, protobuf
, jq
Expand Down Expand Up @@ -2551,7 +2552,7 @@ let
};
};

vadimcn.vscode-lldb = callPackage ./vscode-lldb { };
vadimcn.vscode-lldb = callPackage ./vscode-lldb { llvmPackages = llvmPackages_14; };

valentjn.vscode-ltex = vscode-utils.buildVscodeMarketplaceExtension rec {
mktplcRef = {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This file has been generated by node2nix 1.11.1. Do not edit!

{pkgs ? import <nixpkgs> {
inherit system;
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-14_x"}:

let
nodeEnv = import ./node-env.nix {
inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
inherit pkgs nodejs;
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
};
in
import ./node-packages.nix {
inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
inherit nodeEnv;
}
Loading

0 comments on commit d8198c2

Please sign in to comment.