Unverified Commit 6589de61 authored by Michael Daniels's avatar Michael Daniels Committed by GitHub
Browse files

vscode-extensions.pranaygp.vscode-css-peek: init at 4.4.3 (#448099)

parents 43bb63ae 344edf93
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3760,6 +3760,8 @@ let

      prince781.vala = callPackage ./prince781.vala { };

      pranaygp.vscode-css-peek = callPackage ./pranaygp.vscode-css-peek { };

      prisma.prisma = buildVscodeMarketplaceExtension {
        mktplcRef = {
          name = "prisma";
+25 −0
Original line number Diff line number Diff line
{
  lib,
  vscode-utils,
}:
let
  version = "4.4.3";
in

vscode-utils.buildVscodeMarketplaceExtension {
  mktplcRef = {
    publisher = "pranaygp";
    name = "vscode-css-peek";
    inherit version;
    hash = "sha256-oY+mpDv2OTy5hFEk2DMNHi9epFm4Ay4qi0drCXPuYhU=";
  };

  meta = {
    description = "Allow peeking to css ID and class strings as definitions from html files to respective CSS";
    downloadPage = "https://marketplace.visualstudio.com/items?itemName=pranaygp.vscode-css-peek";
    homepage = "https://github.com/pranaygp/vscode-css-peek";
    changelog = "https://github.com/pranaygp/vscode-css-peek/blob/v${version}/README.md#changelog";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.kozm9000 ];
  };
}