Unverified Commit 07ee67d7 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

vscode-extensions.marus25.cortex-debug: init at 1.6.10 (#380416)

parents 51928a51 1fcccc40
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -2747,6 +2747,12 @@
    githubId = 34620799;
    name = "Jacob Bachmann";
  };
  bcooley = {
    email = "bradley.m.cooley@gmail.com";
    github = "Bradley-Cooley";
    githubId = 5409401;
    name = "Bradley Cooley";
  };
  bcyran = {
    email = "bazyli@cyran.dev";
    github = "bcyran";
+2 −0
Original line number Diff line number Diff line
@@ -3126,6 +3126,8 @@ let
        };
      };

      marus25.cortex-debug = callPackage ./marus25.cortex-debug { };

      matangover.mypy = buildVscodeMarketplaceExtension {
        mktplcRef = {
          name = "mypy";
+18 −0
Original line number Diff line number Diff line
{ lib, vscode-utils }:

vscode-utils.buildVscodeMarketplaceExtension {
  mktplcRef = {
    name = "cortex-debug";
    publisher = "marus25";
    version = "1.6.10";
    hash = "sha256-6b3JDkX6Xd91VE1h7gYyeukxLsBkn/nNzDQgBm0axRA=";
  };
  meta = {
    changelog = "https://marketplace.visualstudio.com/items/marus25.cortex-debug/changelog";
    description = "Visual Studio Code extension for enhancing debug capabilities for Cortex-M Microcontrollers";
    downloadPage = "https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug";
    homepage = "https://github.com/Marus/cortex-debug";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.bcooley ];
  };
}