Unverified Commit 199536df authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

vscode-extensions.yoshi47.selection-path-copier: init at 1.5.0 (#506991)

parents 8dce7e9a ba9fa8db
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -5374,6 +5374,8 @@ let
        };
      };

      yoshi47.selection-path-copier = callPackage ./yoshi47.selection-path-copier { };

      yy0931.vscode-sqlite3-editor = callPackage ./yy0931.vscode-sqlite3-editor { };

      yzane.markdown-pdf = callPackage ./yzane.markdown-pdf { };
+22 −0
Original line number Diff line number Diff line
{
  lib,
  vscode-utils,
  nix-update-script,
}:

vscode-utils.buildVscodeMarketplaceExtension (finalAttrs: {
  mktplcRef = {
    publisher = "yoshi47";
    name = "selection-path-copier";
    version = "1.5.0";
    hash = "sha256-ip8dsU8B2vghINPSftvfC5OtM0bjIP0V3JAMt5skmdg=";
  };
  meta = {
    description = "Copy file paths with line numbers, code snippets, and GitHub permalinks in multiple formats";
    downloadPage = "https://marketplace.visualstudio.com/items?itemName=yoshi47.selection-path-copier";
    homepage = "https://github.com/yoshi47/selection-path-copier";
    changelog = "https://github.com/yoshi47/selection-path-copier/releases/tag/release/v${finalAttrs.version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ aduh95 ];
  };
})